The backend of this application has been built using Django, DRF, MySQL.
You can find frontend for this application through this repository: Frontend
The project has been deployed on Vercel: Link
Pre-requisite of this project is to have Python3.10 and pip installed on your system.
Generate a virtual enviroment
Install the requirements
Create .env in the root folder of the project.
Add these configurations in .env file:
SECRET_KEY=
DATABASE_NAME=
DATABASE_USERNAME=
DATABASE_PASSWORD=
DATABASE_HOST=
DATABASE_PORT=
JWT_SECRET=
Dont put space anywhere= sign. For example, SECRET_KEY=abc_ee
If you have not created MYSQL database, create one using command in mysql shell: create database <database_name>
Run commands for migrations to apply:
Finally run the server