You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
954 B
26 lines
954 B
#!/bin/sh
|
|
sleep 20
|
|
python manage.py makemigrations
|
|
python manage.py migrate
|
|
# python manage.py seed_images
|
|
# python manage.py compilemessages
|
|
python manage.py collectstatic --noinput
|
|
python manage.py assign_volume_images --force
|
|
# python manage.py set_default_category_icons
|
|
# python manage.py set_hadiscorrection_fixed_text
|
|
# Seed Russian data (only runs once, skips if data exists)
|
|
# python manage.py seed_corrections
|
|
# python manage.py seed_russian_data
|
|
# python manage.py hadisreferences
|
|
# python manage.py seed_complete_hadis_data
|
|
# python manage.py populate_books
|
|
# python manage.py populate_book_reference
|
|
# python manage.py populate_refrence_images
|
|
# python manage.py populate_article
|
|
# python manage.py populate_books
|
|
# python manage.py seed_category_data
|
|
# Ensure default category icon is in media volume for Next.js image optimization
|
|
mkdir -p /usr/src/app/media
|
|
cp /usr/src/app/static/images/Frame.svg /usr/src/app/media/Frame.svg
|
|
|
|
exec "$@"
|