Clone this project
create .env file in the backend directory and add your env variable
SECRET_KEY=
create virtual environment
python -m venv venv
activate virtual environment
# for windows
venv\scripts\activate
# for mac
venv/bin/activate
# for linux
source venv/bin/activate
create a folder name "migrations" inside the "app" folder & also create a "init.py" file inside the "migrations"
migrations
__init__.py
install dependencies
pip install -r requirements.txt
migrate models
python manage.py makemigrations
python manage.py migrate
run server
python manage.py runserver