2023-02-10 17:45:41 +00:00
|
|
|
{
|
|
|
|
|
"name": "pallets/flask",
|
2023-03-12 08:13:26 -07:00
|
|
|
"image": "mcr.microsoft.com/devcontainers/python:3",
|
|
|
|
|
"customizations": {
|
|
|
|
|
"vscode": {
|
|
|
|
|
"settings": {
|
2023-02-18 01:13:41 +00:00
|
|
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
|
2023-03-12 08:13:26 -07:00
|
|
|
"python.terminal.activateEnvInCurrentTerminal": true,
|
|
|
|
|
"python.terminal.launchArgs": [
|
|
|
|
|
"-X",
|
|
|
|
|
"dev"
|
|
|
|
|
]
|
2023-02-24 17:52:05 +00:00
|
|
|
}
|
2023-02-17 23:53:55 +00:00
|
|
|
}
|
2023-03-12 08:13:26 -07:00
|
|
|
},
|
|
|
|
|
// "onCreateCommand": "sudo cp .devcontainer/welcome-message.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt",
|
|
|
|
|
"postCreateCommand": "sudo chmod +x .devcontainer/post-create-command.sh && .devcontainer/post-create-command.sh",
|
|
|
|
|
"waitFor": "postCreateCommand"
|
2023-02-10 17:45:41 +00:00
|
|
|
}
|