7 lines
141 B
Text
7 lines
141 B
Text
|
#!/bin/bash
|
||
|
set -eu
|
||
|
|
||
|
./manage.py migrate
|
||
|
./manage.py collectstatic --clear --noinput
|
||
|
gunicorn --bind 0.0.0.0:8000 shortener.wsgi:application
|