21 lines
272 B
Makefile
21 lines
272 B
Makefile
install:
|
|
pip install -r requirements.txt
|
|
|
|
clean:
|
|
rm -rf ~/.local/share/controles/database.db*
|
|
rm -f admin_qr.png
|
|
|
|
init-db: clean
|
|
python init_db.py
|
|
|
|
seed: init-db
|
|
python seed.py
|
|
|
|
run:
|
|
python app.py
|
|
|
|
run-with-seed: seed run
|
|
|
|
reset-admin: clean
|
|
python create_admin.py
|