This is a generic template for DRF Api using typical Product-Order example !
- Added Models: Product, Order and OrderItems models
- Serializers: Serializer for the models and nested serializers added
- Class Based Views:Included both function based views and class based views
- Silk Request Monitoring:Include silk for request monitoring
- Permisions and Testing Permissions:To check and give response for unauthenticated request
make migrations and migrate
python3 manage.py makemigrations
python3 manage.py migrateRun the Project with
python3 manage.py runserver