17 строки
336 B
Bash
Executable File
17 строки
336 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd network-api
|
|
|
|
# Django Migrations
|
|
python ./manage.py migrate --no-input
|
|
|
|
# Wagtail block inventory
|
|
python ./manage.py block_inventory
|
|
|
|
# Wagtail translations
|
|
python ./manage.py sync_page_translation_fields
|
|
python ./manage.py update_translation_fields
|
|
|
|
# Clear cache for BuyersGuide
|
|
python ./manage.py clear_cache
|