aboutsummaryrefslogtreecommitdiff
path: root/.devcontainer/scripts/getting-started.sh
diff options
context:
space:
mode:
Diffstat (limited to '.devcontainer/scripts/getting-started.sh')
-rw-r--r--.devcontainer/scripts/getting-started.sh16
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 ""