diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..4873b7748 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,18 @@ +{ + "name": "codeforlife-portal", + "image": "mcr.microsoft.com/vscode/devcontainers/python:3.8", + "features": { + "ghcr.io/devcontainers-contrib/features/pipenv:2": { + "version": "2023.11.15" + } + }, + "postCreateCommand": "pipenv install --dev", + "customizations": { + "vscode": { + "settings": {}, + "extensions": [ + "ms-python.python" + ] + } + } +}