aboutsummaryrefslogtreecommitdiff
path: root/.devcontainer/README.md
blob: 510a843414061b7352101613c81c32ac2df18093 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Bun's Dev Container

To get started, login to GitHub and clone bun's GitHub repo into `/build/bun`

# First time setup

```bash
gh auth login # if it fails to open a browser, use Personal Access Token instead
gh repo clone oven-sh/bun . -- --depth=1 --progress -j8
```

# Compile bun dependencies (zig is already compiled)

```bash
make devcontainer
```

# Build bun for development

```bash
make dev
```

# Run bun

```bash
bun-debug help
```