Skip to content

DarkKnightSgh/Ecommerce-Monolithic-Microservices

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Microservice-architecture-e-commerce-website

running frontend seperately

cd adroit-18
docker build -t reactapp .
docker run -p 3000:3000 reactapp

Then open http://localhost:3000/

MAKE SURE TO RUN BACKEND FIRST

running payment backend seperately

cd payment backend
docker build -t my-node-app .
docker run -d -p 5555:5555 my-node-app

running products backend seperately

Before doing this,run backend first to check if it's working by : python app.py If it doesn't work,make sure to create a python virtual environment and run flask in that

cd product_backend
docker build -t product_backend .
docker run -p 8080:8080 product_backend

running cart backend seperately

cd cart_backend
docker build -t cart_backend .
docker run -d -p 8081:8081 cart_backend

About

Converting a monolithic eCommerce website to microservices architecture using Docker. Ideal for cloud computing enthusiasts. Streamlines scalability and maintenance

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors