Files
kryz-go-flutter/.devcontainer/devcontainer.json
T
2026-04-28 16:54:12 -07:00

22 lines
452 B
JSON

{
"name": "kryz-go",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.vscode-typescript-next"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "bash"
}
}
},
"postCreateCommand": "npm install",
"remoteUser": "node",
"mounts": [
"source=${localEnv:HOME}/.gradle,target=/root/.gradle,type=bind,consistency=cached"
]
}