You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
250 B
Bash

#!/bin/bash
# Collect static files
python manage.py collectstatic --noinput
# Apply database migrations
sleep 3 # wait for db
python manage.py migrate
# Start server
gunicorn cas.wsgi:application --bind 0.0.0.0:8000 --workers 2 --log-level debug