Files
python/.devcontainer/devcontainer.json

20 lines
357 B
JSON
Raw Normal View History

2019-04-16 18:19:04 -07:00
{
"name": "Python 3",
2024-04-05 13:22:31 +05:30
"image": "mcr.microsoft.com/devcontainers/python:1-3.12",
2022-05-17 12:41:41 -07:00
"customizations": {
"vscode": {
"settings": {},
2022-05-17 12:41:41 -07:00
"extensions": [
"streetsidesoftware.code-spell-checker"
2022-05-17 12:41:41 -07:00
]
}
},
2021-03-16 15:40:01 +00:00
"portsAttributes": {
"9000": {
"label": "Hello Remote World",
"onAutoForward": "notify"
}
},
2025-10-27 20:29:38 +08:00
"postAttachCommand": "python app.py"
}