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.
19 lines
609 B
19 lines
609 B
#!/bin/sh
|
|
sleep 20
|
|
python manage.py makemigrations hadis
|
|
python manage.py migrate
|
|
# python manage.py seed_images
|
|
python manage.py collectstatic --noinput
|
|
|
|
# Seed Russian data (only runs once, skips if data exists)
|
|
python manage.py seed_hadis_transmitter
|
|
# 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
|
|
exec "$@"
|