Skip to content

Commit 8244fb8

Browse files
authored
Closes #1795 - Support building and developing in a devcontainer (#1791)
1 parent afc3924 commit 8244fb8

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "T3 Code Dev",
3+
"image": "debian:bookworm",
4+
"features": {
5+
"ghcr.io/devcontainers-extra/features/bun:1": {},
6+
"ghcr.io/devcontainers/features/node:1": {
7+
"version": "24",
8+
"nodeGypDependencies": true
9+
},
10+
"ghcr.io/devcontainers/features/python:1": {
11+
"version": "3.12"
12+
}
13+
},
14+
"postCreateCommand": {
15+
"bun-install": "bun install --backend=copyfile --frozen-lockfile"
16+
},
17+
"customizations": {
18+
"vscode": {
19+
"extensions": ["oxc.oxc-vscode"]
20+
}
21+
}
22+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ apps/web/src/components/__screenshots__
2121
.vitest-*
2222
__screenshots__/
2323
.tanstack
24+
squashfs-root/

0 commit comments

Comments
 (0)