diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..53b5c62 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,6 @@ +{ + "forwardPorts": [ + 8001 + ], + "postStartCommand": "bash setup.sh" +} \ No newline at end of file diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..da62d10 --- /dev/null +++ b/setup.sh @@ -0,0 +1,3 @@ +pip install -e ".[dev,doc]" + +pre-commit install