This commit is contained in:
2026-03-25 15:43:00 +03:30
parent eb30251362
commit 2846db1647
9 changed files with 325 additions and 60 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
set -e
if [ "${SKIP_MIGRATE}" != "1" ]; then
echo "Running migrations..."
python manage.py migrate --noinput --fake-initial
echo "Migrations done."
fi
echo "Starting command: $*"
exec "$@"