flask/.devcontainer/devcontainer.json
Kundan Kumar 9392f5b3e9 Add devcontainer with Python 3.13 and uv support
Adds a Dockerfile-based development container using Microsoft's Python 3.13 image, with uv installed for dependency management.

Updates:
- Adds .devcontainer/Dockerfile based on Python 3.13
- Modifies devcontainer.json to use a local build
- Updates on-create-command.sh to install dependencies using uv
2025-07-23 08:41:40 +05:30

19 lines
428 B
JSON

{
"name": "pallets/flask",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
"python.terminal.activateEnvInCurrentTerminal": true,
"python.terminal.launchArgs": [
"-X",
"dev"
]
}
}
},
"onCreateCommand": ".devcontainer/on-create-command.sh"
}