Step to follow to run the project:
- Clone the repository
- Go to the folder api
cd api
- install the python environment with pipenv, and then run it
pipenv install pipenv shell
- Run the migrations
python manage.py migrate
- Create your superuser
python manage.py createsuperuser --email admin@example.com --username admin
- Run the backend server
python manage.py runserver
- Go in the folder frontend
cd ../frontend
- install the node environment with npm, and then run it
npm install
- Run the frontend server
npm run dev
note for the frontend guys : Quasar is not installed yet, so I'll let you decide wether to use it or not :)