summaryrefslogtreecommitdiffstats
path: root/.devcontainer/startup.sh
diff options
context:
space:
mode:
Diffstat (limited to '.devcontainer/startup.sh')
-rw-r--r--.devcontainer/startup.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/.devcontainer/startup.sh b/.devcontainer/startup.sh
new file mode 100644
index 0000000..fb9f6f1
--- /dev/null
+++ b/.devcontainer/startup.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+# echo "Configure direnv"
+# echo "eval \"$(direnv hook bash)\"" >> ~/.bashrc
+
+echo "Upgrading pip"
+pip install --upgrade pip
+
+echo "Installing ANTA package from git"
+pip install -e .
+
+echo "Installing development tools"
+pip install -e ".[dev]"