haldis/first-setup.sh
2019-02-13 22:46:26 +01:00

12 lines
302 B
Bash
Executable file

#!/bin/bash
# A simple file to run all instructions from the README
## this should be run in the root of the repository
pip3 install -r requirements.txt
cd app
cp config.example.py config.py
cp -t . database/*
python3 create_database.py
rm -f add_* create_database.py
python3 haldis.py runserver
cd ..