mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-13 12:33:23 +02:00
9 lines
303 B
Bash
Executable file
9 lines
303 B
Bash
Executable file
#!/bin/bash
|
|
echo "Executing run.sh in 15 seconds."
|
|
sleep 15
|
|
#python manage.py make_config
|
|
python manage.py makemigrations --noinput
|
|
python manage.py migrate --noinput
|
|
python manage.py collectstatic --noinput
|
|
python manage.py process_tasks &
|
|
gunicorn labellabor.wsgi:application -b 0.0.0.0:8000 --reload
|