diff options
author | Botond Hende <nettingman@gmail.com> | 2024-10-16 12:28:25 +0200 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-10-16 12:28:25 +0200 |
commit | 3ff7eb63a909368c7de739edfeed7c950d04385c (patch) | |
tree | 16394e71b9a8271cc29667f0e2e7ce32fb863f86 /setup.sh | |
parent | 4ffeaabdfc0f6b0faa73f683cf163d40596fb170 (diff) |
setup.sh added
Diffstat (limited to 'setup.sh')
-rw-r--r-- | setup.sh | 13 |
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 |