mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
* Update build documentation for dev containers * Add devcontainer-rebuild make target * Add make devcontainer-sh target
17 lines
481 B
Bash
17 lines
481 B
Bash
#!/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"
|