This is a Q-Commerce Platform where customer can order a food from their favourite shop
Virtual Environment Set Up
python -m venv venv
Virtual Activation[Linux]
source venv/bin/activate
Virtual Activation With Git Bash[Windows]
source venv/scripts/activate
Install Files
pip install -r requirements.txt
Migrate
python manage.py migrate
Migrations
python manage.py makemigrations
Create Superuser
python manage.py createsuperuser
Run Project
python manage.py runserver