diff options
author | 2023-04-11 04:52:54 -0400 | |
---|---|---|
committer | 2023-04-11 01:52:54 -0700 | |
commit | 14c6023e1551b76c12464a6213456f844fc2024e (patch) | |
tree | a405fba10e6781897d3971dabb5a0e35c4ac3d7e /.devcontainer/scripts/getting-started.sh | |
parent | f91dc8c0d308f2b21a725aeccc58c3cfb78c1339 (diff) | |
download | bun-14c6023e1551b76c12464a6213456f844fc2024e.tar.gz bun-14c6023e1551b76c12464a6213456f844fc2024e.tar.zst bun-14c6023e1551b76c12464a6213456f844fc2024e.zip |
docs: remove dev container section (#2610)
Diffstat (limited to '')
-rw-r--r-- | .devcontainer/scripts/getting-started.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/.devcontainer/scripts/getting-started.sh b/.devcontainer/scripts/getting-started.sh deleted file mode 100644 index cea60dc88..000000000 --- a/.devcontainer/scripts/getting-started.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -echo "To get started, login to GitHub and clone bun's GitHub repo into /build/bun" -echo "If it fails to open a browser, login with a Personal Access Token instead" -echo "# First time setup" -echo "gh auth login" -echo "gh repo clone oven-sh/bun . -- --depth=1 --progress -j8" -echo "" -echo "# Compile bun dependencies (zig is already compiled)" -echo "make devcontainer" -echo "" -echo "# Build bun for development" -echo "make dev" -echo "" -echo "# Run bun" -echo "bun-debug" |