-
Notifications
You must be signed in to change notification settings - Fork 308
Expand file tree
/
Copy pathdevcontainer.json
More file actions
53 lines (53 loc) · 1.44 KB
/
devcontainer.json
File metadata and controls
53 lines (53 loc) · 1.44 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": "Go",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"golang.go",
"GitHub.copilot-chat",
"GitHub.copilot",
"github.vscode-github-actions",
"astro-build.astro-vscode",
"DavidAnson.vscode-markdownlint"
]
},
"codespaces": {
"repositories": {
"github/gh-aw": {
"permissions": {
"actions": "write",
"contents": "write",
"discussions": "read",
"issues": "read",
"pull-requests": "write",
"workflows": "write"
}
},
"githubnext/gh-aw": {
"permissions": {
"actions": "write",
"contents": "write",
"discussions": "read",
"issues": "read",
"pull-requests": "write",
"workflows": "write"
}
}
}
}
},
"features": {
"ghcr.io/anthropics/devcontainer-features/claude-code:1.0": {},
"ghcr.io/devcontainers/features/copilot-cli:latest": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/git-lfs:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/node:1": {
"version": "24"
}
},
"postCreateCommand": "curl -fsSL https://raw.githubusercontent.com/github/gh-aw/refs/heads/main/install-gh-aw.sh | bash"
}