survey-extraction/.devcontainer/devcontainer.json
2025-03-26 14:44:49 +00:00

26 lines
745 B
JSON

{
"name": "Basic Python",
"dockerComposeFile": "docker-compose.yml",
"service": "survey-extractor",
"remoteUser": "vscode",
"workspaceFolder": "/workspaces/survey-extractor",
"postStartCommand": "bash .devcontainer/post-install.sh",
"mounts": [
"source=${localEnv:HOME},target=/workspaces/home,type=bind"
// "source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind"
],
"customizations": {
"vscode": {
"settings": {
"files.defaultWorkspace": "/workspaces/survey-extractor"
},
"extensions": [
"ms-python.python",
"ms-azuretools.vscode-docker",
"ms-toolsai.jupyter",
"mechatroner.rainbow-csv",
"ms-toolsai.datawrangler"
]
}
}
}