Django Rest API with JSON web token(JWT) authentication.
First, clone the repo:
git clone https://github.com/SambhavChoradia/django-rest-app.git
cd django-rest-app
Create a virtual environment
python3 -m venv venv
Activate the virtual environment
source venv/bin/activate
Install all the packages from requirements.txt
pip3 install requirements.txt
Migrate
python3 manage.py migrate
Start the app
python3 manage.py runserver
I have wrote an article medium on how to use this api using postman.