Initial commit of DEMOS2 with the upgraded 'Create Event' UI. However, there is no input validation currently
This commit is contained in:
commit
7084bd1b16
155 changed files with 8102 additions and 0 deletions
26
Makefile
Executable file
26
Makefile
Executable file
|
@ -0,0 +1,26 @@
|
|||
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
|
Reference in a new issue