-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
46 lines (46 loc) · 1.77 KB
/
devcontainer.json
File metadata and controls
46 lines (46 loc) · 1.77 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
{
"name": "Container - Cloudflare Pages Action",
// mcr.microsoft.com/devcontainers/base:jammy
"image": "mcr.microsoft.com/devcontainers/base:jammy@sha256:f2d74267998cfe76acefa5cc8d19ccc86bb2ba4520a5ad2b218def9566dc04cd",
"customizations": {
"vscode": {
"extensions": [
"eamodio.gitlens@2026.5.230538",
"github.vscode-github-actions@0.31.5",
"GraphQL.vscode-graphql-syntax@1.3.10",
"GraphQL.vscode-graphql@0.13.4",
"oxc.oxc-vscode@1.56.0",
"redhat.vscode-yaml@1.24.2026052209",
"vitest.explorer@1.50.4",
"webpro.vscode-knip@2.1.5",
"yoavbls.pretty-ts-errors@0.8.7"
],
"settings": {
"extensions.autoUpdate": false,
"extensions.autoCheckUpdates": true
}
}
},
"postCreateCommand": "sed -i '/^ZSH_THEME/c\\ZSH_THEME=\"bira\"' ~/.zshrc && pnpm i && pre-commit install",
"updateContentCommand": "rm -rf .cache && pnpm i && pre-commit install",
"features": {
"ghcr.io/devcontainers-extra/features/act:1.0.15": {},
"ghcr.io/devcontainers/features/docker-outside-of-docker:1.10.0": {},
"ghcr.io/devcontainers/features/node:2.0.0": {
"version": "24.7.0",
"pnpmVersion": "11.0.8"
},
"ghcr.io/devcontainers/features/github-cli:1.1.0": {},
"ghcr.io/devcontainers-extra/features/pre-commit:2.0.18": {},
"ghcr.io/anthropics/devcontainer-features/claude-code:1.0.5": {}
},
"containerEnv": {
"CLAUDE_CONFIG_DIR": "/home/vscode/.claude"
},
"mounts": [
"source=${localEnv:HOME}/.claude,target=/home/vscode/.claude,type=bind"
]
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}