Clone This Repository:
git clone https://github.com/Shubhashish-Chakraborty/Amazon_Order_Sample.git
Create/Setup the Virtual Environment :
pip install uv
uv venv
Activate the Virtual Environment:
System | Command |
---|---|
macOS and Linux | source .venv/bin/activate |
Windows | .venv\Scripts\activate |
Install Required Packages:
uv pip install -r requirements.txt
Move to the Project Directory:
>>> cd .\CART_MAIN\
Make Migrations:
python manage.py migrate
Create Superuser:
python manage.py createsuperuser
Give all the neccesary inputs
# Default PORT : 8000
>>> python manage.py runserver
# If you want to give your selective PORT:
>>> python manage.py runserver 3000