mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-10 04:50:16 +02:00
12 lines
282 B
Bash
Executable File
12 lines
282 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# TODO route log output to file.
|
|
python manage.py syncdb
|
|
|
|
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 &
|