- Edit
backend/ignis/settings.py
to add database credentials of MySQL. - Create database named
ignis
in MySQL. - Now in
backend/
directory make migrations to the database
python .\manage.py makemigrations
- Migrate it to database
python .\manage.py migrate
- Runuserver
python .\manage.py runserver
- Backend work is done
- Move to
\Frontend\
directory. - Install packages
npm i
- Run dev server.
npm run dev
- We are done... head to the Local URL.