2018-11-22 14:26:51 +03:00
|
|
|
#!/usr/bin/env bash
|
2022-10-26 12:59:31 +03:00
|
|
|
set -eo pipefail
|
2018-11-22 14:26:51 +03:00
|
|
|
|
|
|
|
cd network-api
|
|
|
|
|
|
|
|
# Django Migrations
|
|
|
|
python ./manage.py migrate --no-input
|
|
|
|
|
|
|
|
# Clear cache for BuyersGuide
|
|
|
|
python ./manage.py clear_cache
|