This repository has been archived on 2022-08-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
DEMOS2/Makefile

26 lines
375 B
Makefile
Executable file

default: run
DATABASE_NAME=db.sqlite3
configure:
python configure.py
rebuild: deldb syncdb initdb
deldb:
rm -f $(DATABASE_NAME)
syncdb:
python manage.py syncdb --noinput
initdb:
sqlite3 $(DATABASE_NAME) < seed.sql
run:
python manage.py runserver
clean:
find . -name "*.pyc" -print0 | xargs -0 rm
veryclean: deldb clean
rm -f allauthdemo/settings_generated.py