ticket-website/scripts/fixtures.sh
2024-01-09 22:48:41 +00:00

19 lines
545 B
Bash
Executable File

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