shortener/contrib/run

7 lines
141 B
Bash
Executable file

#!/bin/bash
set -eu
./manage.py migrate
./manage.py collectstatic --clear --noinput
gunicorn --bind 0.0.0.0:8000 shortener.wsgi:application