Files
getting-started-with-github…/.devcontainer/devcontainer.json
julien Lengrand-Lambert 44acc42f14 Initial commit
2025-10-10 15:17:37 +02:00

16 lines
335 B
JSON

{
"name": "Python 3",
"image": "mcr.microsoft.com/vscode/devcontainers/python:3.13",
"forwardPorts": [8000],
"postCreateCommand": "pip install -r requirements.txt",
"customizations": {
"vscode": {
"extensions": [
"GitHub.copilot",
"ms-python.python",
"ms-python.debugpy"
]
}
}
}