-
-
Notifications
You must be signed in to change notification settings - Fork 266
Expand file tree
/
Copy pathdevcontainer.json
More file actions
60 lines (60 loc) · 1.36 KB
/
devcontainer.json
File metadata and controls
60 lines (60 loc) · 1.36 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": "bit platform",
"hostRequirements": {
"cpus": 4
},
"features": {
"ghcr.io/devcontainers/features/python": {},
"ghcr.io/devcontainers/features/powershell:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {
"version": "latest",
"helm": "latest",
"minikube": "latest"
},
"ghcr.io/devcontainers/features/node:1": { "version": "24" }
},
"image": "mcr.microsoft.com/dotnet/nightly/sdk:10.0.103",
"postStartCommand": "dotnet workload install wasm-tools && dotnet dev-certs https --trust",
"waitFor": "onCreateCommand",
"customizations": {
"codespaces": {
"openFiles": [
"CONTRIBUTING.md"
]
},
"vscode": {
"extensions": [
"GitHub.copilot",
"glenn2223.live-sass",
"GitHub.copilot-chat",
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit",
"ms-azuretools.vscode-docker",
"ms-vscode-remote.remote-containers",
"ms-dotnettools.blazorwasm-companion",
"ms-dotnettools.vscode-dotnet-runtime"
]
}
},
"forwardPorts": [
2030,
2031,
2032,
4000,
4001,
5000,
5001,
4030,
4031,
4040,
4041,
5030,
5031,
5040,
5041
],
"remoteEnv": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}