aboutsummaryrefslogtreecommitdiff
path: root/.devcontainer/scripts/getting-started.sh
blob: a315f0fc08baab4207289a969ea52b31633738f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 ""