tldtest.net/entrypoint.sh
2024-03-26 16:11:08 +01:00

19 lines
301 B
Bash
Executable file

#!/bin/sh
if [ "$DATABASE" = "postgres" ]
then
echo "Waiting for postgres..."
while ! nc -z $SQL_HOST $SQL_PORT; do
sleep 0.1
done
echo "PostgreSQL started"
fi
python manage.py makemigrations # Make migrations
python manage.py migrate # Apply database migrations
exec "$@"