Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 :)