mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
Most CLI tools have the style convention of referring to themselves in lowercase. It is, after all, the name that users type in when using the tool. This PR maintains that convention in bun. "Drop the uppercase B, it's cleaner"
17 lines
466 B
Bash
17 lines
466 B
Bash
#!/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 "# First time setup"
|
|
echo "gh auth login"
|
|
echo "gh repo clone Jarred-Sumner/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"
|