diff options
author | 2021-12-23 18:39:51 -0800 | |
---|---|---|
committer | 2021-12-23 18:40:03 -0800 | |
commit | b73e7a9732beefefa82934e728421275a089c49d (patch) | |
tree | 2290932b844eb1d4f1c278b31778bf3c096673f5 /.devcontainer/scripts/getting-started.sh | |
parent | 2047140ddaded70f7091ab1dc79be0945bf70c67 (diff) | |
download | bun-b73e7a9732beefefa82934e728421275a089c49d.tar.gz bun-b73e7a9732beefefa82934e728421275a089c49d.tar.zst bun-b73e7a9732beefefa82934e728421275a089c49d.zip |
Add VSCode devcontainer environment for easy contributing
Diffstat (limited to '.devcontainer/scripts/getting-started.sh')
-rw-r--r-- | .devcontainer/scripts/getting-started.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.devcontainer/scripts/getting-started.sh b/.devcontainer/scripts/getting-started.sh new file mode 100644 index 000000000..a315f0fc0 --- /dev/null +++ b/.devcontainer/scripts/getting-started.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +echo "To get started, login to GitHub and clone Bun's GitHub repo into /workspaces/bun" +echo "Make sure to login with a Personal Access Token" +echo "" +echo " gh auth login;" +echo " gh repo clone Jarred-Sumner/bun -- --depth=1 --progress --recursive -j8" +echo " cd bun;" +echo " make devcontainer" +echo "" +echo "To build for development:" +echo " make dev" +echo "" +echo "To run:" +echo " bun-debug" +echo "" |