Skip to content

Latest commit

 

History

History
23 lines (23 loc) · 387 Bytes

README.md

File metadata and controls

23 lines (23 loc) · 387 Bytes

AmazonClone

Clone the repository

git clone https://github.com/divyekalra1/AmazonClone.git 

Setup and activate a python3 virtual environment using venv

python3 -m venv env
source env/bin/activate

Install dependencies

pip3 install -r requirements.txt

Migrate database

cd django_prj
python manage.py migrate

Run Server

python manage.py runserver