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

23 lines
562 B

#!/usr/bin/env bash
set -o errexit
echo "Making staticfiles"
python manage.py collectstatic --noinput
echo "Initializing database"
python manage.py wait_for_db
python manage.py migrate
python manage.py create_roles
if [[ -n "${ADMIN_USERNAME}" ]] && [[ -n "${ADMIN_PASSWORD}" ]] && [[ -n "${ADMIN_EMAIL}" ]]; then
python manage.py create_admin \
--username "${ADMIN_USERNAME}" \
--password "${ADMIN_PASSWORD}" \
--email "${ADMIN_EMAIL}" \
--noinput \
|| true
fi
echo "Starting django"
gunicorn --bind 0.0.0.0:8000 app.wsgi --timeout 300