diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..ee4a2c2 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "name": "create-python-app", + "image": "mcr.microsoft.com/devcontainers/python:3.12", + "features": { + "ghcr.io/astral-sh/uv-feature/uv:1": {} + }, + "postCreateCommand": "uv sync --group dev", + "customizations": { + "vscode": { + "extensions": [ + "charliermarsh.ruff", + "ms-python.python", + "ms-python.vscode-pylance" + ] + } + } +}