first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-05-03 22:16:10 -04:00
commit 108378a31e
33 changed files with 1624 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/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 create_db
exec "$@"