Requirements pinning + some cleanup #36

Merged
valberg merged 4 commits from benjaoming/membersystem:requirements-and-cleanup into main 2024-07-31 21:17:01 +00:00
Showing only changes of commit 24f3c30a41 - Show all commits

View file

@ -1,5 +1,16 @@
#!/bin/sh #!/bin/sh
echo "Waiting for postgres..."
POSTGRES_PORT=${POSTGRES_PORT:-5432}
POSTGRES_HOST=${POSTGRES_HOST:-localhost}
while ! nc -z "$POSTGRES_HOST" "$POSTGRES_PORT"; do
sleep 0.1
done
echo "PostgreSQL started"
# Only migrate, collectstatic and compilemessages if we are NOT in development # Only migrate, collectstatic and compilemessages if we are NOT in development
if [ -z "$DEBUG" ]; then if [ -z "$DEBUG" ]; then
python src/manage.py migrate; python src/manage.py migrate;