mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-01-29 10:37:38 +01:00
22 lines
537 B
JSON
22 lines
537 B
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.191.1/containers/python-3
|
|
{
|
|
"name": "Prettymaps",
|
|
"postStartCommand": "script/bootstrap",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"context": "..",
|
|
"args": {
|
|
"VARIANT": "3.9"
|
|
}
|
|
},
|
|
|
|
"settings": {
|
|
"python.pythonPath": "/usr/local/bin/python",
|
|
},
|
|
|
|
"extensions": ["ms-python.python", "ms-python.vscode-pylance"],
|
|
|
|
"remoteUser": "vscode"
|
|
}
|