This repository has been archived on 2026-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
RepApp/start_server.sh

14 lines
431 B
Bash

#!/usr/bin/env bash
cd /opt/app/rc_hip
python manage.py makemigrations --noinput
python manage.py migrate --noinput
python manage.py collectstatic --noinput
if [ -n "$DJANGO_SUPERUSER_USERNAME" ] && [ -n "$DJANGO_SUPERUSER_PASSWORD" ] ; then
(python manage.py createsuperuser --no-input)
fi
chown -R www-data:www-data /opt/app
(gunicorn rc_hip.wsgi --user www-data --bind 0.0.0.0:8010 --workers 3) & nginx -g "daemon off;"