ticket-website/scripts/fixtures.sh
2024-04-28 23:22:28 +01:00

19 lines
542 B
Bash

echo migrating
python manage.py migrate
echo installing authentication fixtures
python manage.py loaddata apps/authentication/fixtures/department.json
echo installing default users
python manage.py loaddata apps/authentication/fixtures/user.json
echo installing ticket priorities
python manage.py loaddata apps/home/fixtures/ticketpriority.json
echo installing ticket tags
python manage.py loaddata apps/home/fixtures/tickettag.json
echo installing default tickets
python manage.py loaddata apps/home/fixtures/ticket.json
echo all done!