charasheet/.devcontainer/devcontainer.json

12 lines
331 B
JSON
Raw Normal View History

2023-03-25 09:32:35 +01:00
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.11",
"installTools": true,
"optimize": false
}
},
"postStartCommand": "pip install pip-tools invoke && inv sync-dependencies && pre-commit install --install-hooks"
}