Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rufilboss/microservicesecommerce
Ecommerce website deployed with microservices architecture
https://github.com/rufilboss/microservicesecommerce
django ecommerce microservice react stripe
Last synced: about 8 hours 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-10T20:15:36.000Z (over 1 year ago)
- Last Synced: 2024-11-15T10:10:44.035Z (about 8 hours 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 inpm start
```## All set ! Happy coding :)