flask/.devcontainer/devcontainer.json
2023-03-16 17:35:55 +00:00

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"
}