mybuddy/.devcontainer.json

24 lines
503 B
JSON
Raw Normal View History

{
"customizations": {
"vscode": {
"extensions": [
"bbenoist.Nix",
"ms-python.python",
"batisteo.vscode-django",
"ms-python.black-formatter"
],
"settings": {
"[python]": {
"editor": {
"defaultFormatter": "ms-python.black-formatter"
},
"pipenvPath": "pipenv"
}
}
}
},
"image": "ghcr.io/cachix/devenv:latest",
"overrideCommand": false,
"updateContentCommand": "devenv ci"
}