7 lines
159 B
Bash
7 lines
159 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
python manage.py migrate --no-input
|
||
|
python manage.py collectstatic --no-input
|
||
|
|
||
|
gunicorn logs_collector.wsgi:application --bind 0.0.0.0:8000
|