Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.11 KB

README.md

File metadata and controls

43 lines (35 loc) · 1.11 KB

example-microservices

This repo is part hands-on meetup at Fullstack Developers Israel, you should also check the presentation

Branches

  1. master - your starting point for implementation, include implemented discovery and frontend-service.
  2. dev - our naive solution.
  3. wireframe - basic wireframe of the packages.
  4. frontend - dedicate to frontend development.

Getting started

  1. Install all package dependencies:
cd client-api
npm i
cd ..
cd service-scraper
npm i
cd ..
cd service-api
npm i
cd ..
cd service-frontend
npm i
cd ..
  1. Run
npm start
  1. Open http://localhost:9000/ to view the pm2-web client.
  2. Open http://localhost:8080/ for viewing the frontend.

Caveat

Due to a bug in npm you need to manually delete local packages and then install again.

A proper way would be to keep every package in its own repo.