-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathdevcontainer.json
More file actions
60 lines (53 loc) · 1.59 KB
/
devcontainer.json
File metadata and controls
60 lines (53 loc) · 1.59 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
54
55
56
57
58
59
60
{
"name": "GitHub Copilot Vibe Coding Workshop",
"image": "mcr.microsoft.com/devcontainers/dotnet:8.0-noble",
"features": {
"ghcr.io/devcontainers/features/common-utils:latest": {},
"ghcr.io/devcontainers/features/dotnet:latest": {
"version": "9.0"
},
"ghcr.io/devcontainers/features/docker-in-docker:latest": {},
"ghcr.io/devcontainers/features/java:latest": {
"installGradle": true,
"installMaven": true,
"mavenVersion": "3.9.10",
"version": "21"
},
"ghcr.io/devcontainers/features/node:latest": {},
"ghcr.io/devcontainers/features/python:latest": {}
},
"overrideFeatureInstallOrder": [
"ghcr.io/devcontainers/features/common-utils"
],
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.vscode-github-actions",
"GitHub.vscode-pull-request-github",
"ms-azuretools.vscode-docker",
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.autopep8",
"ms-vscode.vscode-node-azure-pack",
"redhat.vscode-yaml",
"vscjava.vscode-java-pack",
"vscjava.vscode-spring-initializr",
"vscjava.vscode-spring-boot-dashboard"
],
"settings": {
"chat.agent.enabled": true
}
}
},
"remoteUser": "vscode",
"onCreateCommand": "./.devcontainer/on-create.sh > ~/on-create.log",
"hostRequirements": {
"memory": "16gb"
}
}