POSTMAN Documentation: https://documenter.getpostman.com/view/25186829/2s93Xzy3LF
Python 3.10.6
Make directory
mkdir codingclub_api
cd codingclub_api
Initialized empty git repository
git init
Set remote origin
git remote add origin https://github.com/MustafaMunir123/codingclub-api.git
------------If above command does not work, then run---------------
git pull https://github.com/MustafaMunir123/codingclub-api.git master
-----------------------Otherwise-----------------------
git pull origin master
Install packages
pip install -r requirements.txt
Make database migrations
python manage.py makemigrations
python manage.py migrate
Run django-backend
python manage.py runserver