https://github.com/justdjango/django-react-ecommerce
An e-commerce web app built with Django and React
https://github.com/justdjango/django-react-ecommerce
Last synced: about 1 month ago
JSON representation
An e-commerce web app built with Django and React
- Host: GitHub
- URL: https://github.com/justdjango/django-react-ecommerce
- Owner: justdjango
- Created: 2019-07-03T22:06:59.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T05:50:45.000Z (over 2 years ago)
- Last Synced: 2025-03-29T10:04:59.117Z (about 1 month ago)
- Language: JavaScript
- Size: 277 KB
- Stars: 407
- Watchers: 18
- Forks: 208
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The Definitive Django Learning Platform.
# Django React Ecommerce
This repository contains a Django and React ecommerce project. Among other functionality, users can create their account, add items to their cart and purchase those items using Stripe.
[Watch the tutorials on how to build this project](https://youtu.be/RG_Y7lIDXPM)
## Backend development workflow
```json
virtualenv env
source env/bin/activate
pip install -r requirements.txt
python manage.py runserver
```## Frontend development workflow
```json
npm i
npm start
```## For deploying
```json
npm run build
```---