mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-10 21:10:17 +02:00
14 lines
374 B
Bash
Executable File
14 lines
374 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# TODO route log output to file.
|
|
yes yes | python manage.py collectstatic
|
|
python manage.py syncdb
|
|
yes yes | python manage.py evolve --hint --execute
|
|
|
|
python manage.py shell < run_alliance_corp_update.py
|
|
|
|
python manage.py celeryd --verbosity=2 --loglevel=DEBUG &
|
|
python manage.py celerybeat --verbosity=2 --loglevel=DEBUG &
|
|
|
|
python manage.py runserver &
|