jones-dev #19

Merged
corbz merged 106 commits from jones-dev into master 2024-01-26 17:39:03 +00:00
2 changed files with 11 additions and 3 deletions
Showing only changes of commit 8acb8c3aca - Show all commits

View File

@ -1,5 +1,4 @@
@echo off
venv\Scripts\activate
python manage.py migrate

View File

@ -1,10 +1,19 @@
source venv/bin/activate
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!