This is a full-stack e-commerce application with a Django (Python) backend and a React (JavaScript) frontend.
- Python 3.8+
- Node.js and npm
- Git
git clone https://github.com/mishrasur7/eshop-web.git
cd eshop-web
cd ecommerce_backend
python -m venv venv
source venv/bin/activate # On Mac
venv\Scripts\activate # On Windows
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Now visit http://localhost:8000
cd ecommerce_frontend
npm install
npm start
Now visit: http://localhost:3000