initial commit

This commit is contained in:
Adam Rabjerg
2021-06-19 13:40:53 +02:00
commit f1faca41d1
7 changed files with 89 additions and 0 deletions

12
setup.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
echo "Creating virtual environment."
python3 -m venv ./venv
echo "Activating virtual environment."
source ./venv/bin/activate
echo "Installing packages to virtual environment."
pip3 install -r ./requirements.txt
echo "We are done here."