-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
53 lines (49 loc) · 1.51 KB
/
devcontainer.json
File metadata and controls
53 lines (49 loc) · 1.51 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
47
48
49
50
51
52
53
{
"name": "langstar-codespaces",
// Use Docker Compose for container configuration
"dockerComposeFile": "docker-compose.yml",
"service": "langstar-dev",
"workspaceFolder": "/workspace",
// Dev Container features (installed by VS Code, not Docker Compose)
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers-extra/features/mise:1": {},
"ghcr.io/devcontainers-extra/features/uv:1": {},
"ghcr.io/devcontainers/features/rust:1": {},
"ghcr.io/codekiln/langstar/langstar:1": {
"version": "2.1.2"
}
},
// VS Code customizations
"customizations": {
"vscode": {
"extensions": [
"anthropic.claude-code",
// container tools for docker
"ms-azuretools.vscode-containers",
"ms-azuretools.vscode-docker",
// python language support
"ms-python.python"
],
"settings": {
"files.autoSave": "afterDelay",
"editor.formatOnSave": true,
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash"
},
"zsh": {
"path": "zsh"
}
}
}
}
},
"remoteUser": "node",
// Lifecycle commands
// Note: Scripts are in parent directory, referenced via /workspace path
"postCreateCommand": "bash /workspace/.devcontainer/post-create.sh",
"postStartCommand": "bash /workspace/.devcontainer/setup-github-auth.sh"
}