6 lines
141 B
Bash
Executable file
6 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
|