Create .devcontainer/devcontainer.json

This commit is contained in:
Gabriel Augendre 2023-03-25 09:32:35 +01:00 committed by GitHub
parent 9e630b041e
commit f4570ee55d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,11 @@
{
"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"
}