mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 23:38:02 +01:00
7 lines
187 B
Text
7 lines
187 B
Text
|
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
pushd /mnt/data/checkout
|
||
|
docker compose exec django python manage.py clear_all_data
|
||
|
docker compose exec django python manage.py generate_dummy_baskets
|
||
|
popd
|