forked from bitfoundation/bit-templates-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
52 lines (52 loc) · 1.53 KB
/
Copy pathdevcontainer.json
File metadata and controls
52 lines (52 loc) · 1.53 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
{
"name": "Bit.TemplatePlayground",
"image": "mcr.microsoft.com/dotnet/sdk:9.0",
"hostRequirements": {
"cpus": 8
},
"onCreateCommand": "dotnet workload install wasm-tools && dotnet dev-certs https --trust",
"waitFor": "onCreateCommand",
"customizations": {
"codespaces": {
"openFiles": [
"README.md"
]
},
"vscode": {
"extensions": [
"GitHub.copilot",
"glenn2223.live-sass",
"GitHub.copilot-chat",
"ms-dotnettools.csharp",
"ms-dotnettools.csdevkit",
"ms-azuretools.vscode-docker",
"DominicVonk.vscode-resx-editor",
"ms-vscode-remote.remote-containers",
"ms-dotnettools.blazorwasm-companion",
"ms-dotnettools.vscode-dotnet-runtime"
]
}
},
"forwardPorts": [
2169,
2232,
2160,
4097,
5000,
5215
],
"features": {
"ghcr.io/devcontainers/features/python": {},
"ghcr.io/devcontainers/features/powershell:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/node:1": { "version": "23" },
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {
"version": "latest",
"helm": "latest",
"minikube": "latest"
}
},
"remoteEnv": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}