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.
20 lines
670 B
20 lines
670 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
|
|
# 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
|
|
# python manage.py refresh_share_links
|
|
exec "$@"
|