moto/.devcontainer/devcontainer.json
2023-07-03 22:36:55 +00:00

23 lines
680 B
JSON

{
"name": "moto",
"image": "mcr.microsoft.com/devcontainers/python:0-3.11",
"remoteUser": "root",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"extensions": ["ms-vscode.makefile-tools", "ms-python.python", "ms-python.black-formatter"],
"settings": {
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
"python.formatting.provider": "none",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
}
}
}
},
"postCreateCommand": "python -m venv .venv",
"postStartCommand": ". .venv/bin/activate && make init"
}