You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Develop a REST API using Django Rest Framework (DRF) and MySQL that manages users, products, and orders with proper relationships and data fetching using joins / nested serializers.
🚀 Setup Instructions
1. Create and activate a virtual environment
python -m venv .venv
2. Activate virtual environment.
Windows:
.venv\Scripts\activate
Linux / macOS:
source .venv/bin/activate
Develop a REST API using Django Rest Framework (DRF) and MySQL that manages users, products, and orders with proper relationships and data fetching using joins / nested serializers. (Django ORM relationships) (ForeignKey & One-to-Many relations) (Nested serializers) (CRUD APIs) (Fetching relational data)