https://github.com/rufilboss/microservicesecommerce
Ecommerce website deployed with microservices architecture
https://github.com/rufilboss/microservicesecommerce
django ecommerce microservice react stripe
Last synced: 4 months ago
JSON representation
Ecommerce website deployed with microservices architecture
- Host: GitHub
- URL: https://github.com/rufilboss/microservicesecommerce
- Owner: rufilboss
- License: mit
- Created: 2023-05-30T07:19:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-10T20:15:36.000Z (almost 3 years ago)
- Last Synced: 2025-01-15T21:29:53.215Z (about 1 year ago)
- Topics: django, ecommerce, microservice, react, stripe
- Language: JavaScript
- Homepage:
- Size: 2.48 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FullStack Ecommerce App
A FullStack Ecommerce App built with Django and React.
## Installation
Clone this repository code and follow below steps:
* (NOTE: your need to setup your own stripe secret api key and publishable key in django to be able to use payment)
### Backend
* (for both linux and windows)
Move into the backend folder through terminal and run following commands;
```sh
python3 -m venv env (for windows --> `python -m venv env`)
source env/bin/activate (for windows --> `env\scripts\activate`)
pip install -r requirements.txt (same for both)
python manage.py runserver (same for both)
```
### Frontend
* (for both linux and windows)
Move into the frontend folder through terminal and run follwing commands
```sh
npm i
npm start
```
## All set ! Happy coding :)