diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..89892f4 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye", + "features": { + "ghcr.io/devcontainers/features/git:1": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance" + ] + } + }, + "postCreateCommand": "pip install -r requirements.txt" +} + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e9eb9ba --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.codesandbox diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e69de29