portier/start.sh

44 lines
1.1 KiB
Bash
Raw Permalink Normal View History

2020-04-20 18:56:29 +02:00
#!/bin/sh
migrate() {
python manage.py makemigrations
python manage.py migrate
}
wait_for_redis() {
echo "Trying to connect to redis at ${REDIS_HOST:-redis}:${REDIS_PORT:-6379} ..."
while ! nc -z ${REDIS_HOST:-redis} ${REDIS_PORT:-6379};
do
sleep 1;
done;
echo "Successfully connected to redis. Continuing.";
}
wait_for_database() {
echo "Trying to connect to database at ${SQL_HOST:-postgres}:${SQL_PORT:-5432} ..."
while ! nc -z ${SQL_HOST:-postgres} ${SQL_PORT:-5432};
do
sleep 1;
done;
echo "Successfully connected to database. Continuing.";
}
2020-04-20 18:56:29 +02:00
case $1 in
"create_superuser" )
wait_for_redis
wait_for_database
2020-04-20 18:56:29 +02:00
python manage.py createsuperuser --no-input --username "${ADMIN_USER:-admin}" --email "${ADMIN_EMAIL:-post@chaoswest.tv}"
;;
"migrate_start" )
wait_for_redis
wait_for_database
2020-04-20 18:56:29 +02:00
migrate
gunicorn -w 4 --bind 0.0.0.0:${EXPOSE_PORT:-8000} portier.wsgi
;;
"only_start" )
wait_for_redis
wait_for_database
2020-04-20 18:56:29 +02:00
gunicorn -w 4 --bind 0.0.0.0:${EXPOSE_PORT:-8000} portier.wsgi
;;
esac