Files
matitos_news/app_urls/initialize.sh
2025-07-17 22:29:06 +02:00

16 lines
529 B
Bash
Executable File

#!/bin/bash
if [ "${INITIALIZE_DB}" = false ]; then
echo "Initialization not required"
else
echo "Initializating database"
python init_db.py --initialize_tables --initialize_data
python manage.py makemigrations fetcher; python manage.py migrate --fake-initial
python manage.py migrate django_celery_beat
python manage.py createsuperuser --noinput
python manage.py collectstatic --no-input
python manage.py loaddata scheduled_tasks.json
#
# python manage.py inspectdb # Debugging model
fi