🛒 This is an e-commerce bookstore API based on Django REST Framework. This API features two types of users - Customer and Admin. For authenticating users, Django REST Framework simple jwt is used. The installation guide is given below.
1. git clone https://github.com/MohamedAliHamza/BookStore.git
2. cd bookstore\backend
3. pip install virtualenvwrapper-win
4. mkvirtualenv venv
5. workon venv
6. pip install -r requirement.txt
7. python manage.py migrate
8. python manage.py runserver
http://127.0.0.1:8000/api/docs/