summaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'setup.sh')
-rw-r--r--setup.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/setup.sh b/setup.sh
new file mode 100644
index 0000000..09a2c95
--- /dev/null
+++ b/setup.sh
@@ -0,0 +1,13 @@
+#!/usr/bin/bash -e
+
+ROOT_DIR="$(dirname "$0")"
+cd "$ROOT_DIR"
+
+git submodule init
+git submodule update
+
+ln -sf "$ROOT_DIR"/submodules/hassil/hassil modules/hassil
+
+python -m venv venv
+source venv/bin/activate
+python -m pip install -r requirements.txt \ No newline at end of file