Files
ssh/.devcontainer/devcontainer.json
T
jamie 8d8e9c052d
CI / Build and Push (push) Successful in 12s
feat: initial commit
2026-04-17 12:12:31 +01:00

18 lines
380 B
JSON

{
"name": "Flask Dev Container",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"vivaxy.vscode-conventional-commits",
"esbenp.prettier-vscode"
]
}
},
"postCreateCommand": "pip install -r requirements.txt",
"forwardPorts": [5000],
"remoteUser": "vscode"
}