21 lines
590 B
JSON
21 lines
590 B
JSON
{
|
|
"name": "pallets/flask",
|
|
"image": "mcr.microsoft.com/devcontainers/python:3",
|
|
"customizations": {
|
|
"codespaces": {
|
|
"openFiles": []
|
|
},
|
|
"vscode": {
|
|
"settings": {
|
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
|
|
"python.terminal.activateEnvInCurrentTerminal": true,
|
|
"python.terminal.launchArgs": [
|
|
"-X",
|
|
"dev"
|
|
],
|
|
"terminal.integrated.environmentChangesRelaunch": false
|
|
}
|
|
}
|
|
},
|
|
"onCreateCommand": "sudo chmod +x .devcontainer/on-create-command.sh && .devcontainer/on-create-command.sh"
|
|
}
|