2019-02-13 20:37:07 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# A simple file to run all instructions from the README
|
|
|
|
## this should be run in the root of the repository
|
2019-02-13 20:42:02 +01:00
|
|
|
pip3 install -r requirements.txt
|
2019-02-13 20:37:07 +01:00
|
|
|
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 ..
|