mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
34 lines
961 B
JSON
34 lines
961 B
JSON
{
|
|
"name": "Basic Python",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "model",
|
|
"remoteUser": "vscode",
|
|
"workspaceFolder": "/workspaces/model",
|
|
"postStartCommand": "bash .devcontainer/post-install.sh",
|
|
"mounts": [
|
|
// Optional, just makes getting from Downloads (local env) easier
|
|
"source=${localEnv:HOME},target=/workspaces/home,type=bind"
|
|
],
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"files.defaultWorkspace": "/workspaces/model"
|
|
},
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"ms-toolsai.jupyter",
|
|
"mechatroner.rainbow-csv",
|
|
"ms-toolsai.datawrangler",
|
|
"lindacong.vscode-book-reader",
|
|
"4ops.terraform",
|
|
"fabiospampinato.vscode-todo-plus",
|
|
"jgclark.vscode-todo-highlight",
|
|
"corentinartaud.pdfpreview",
|
|
"ms-python.vscode-python-envs"
|
|
]
|
|
}
|
|
},
|
|
"containerEnv": {
|
|
"PYTHONFLAGS": "-Xfrozen_modules=off"
|
|
}
|
|
}
|