Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 407 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 407 Bytes

Microservices application written in Go

This is a simple application written it Go to help understand how to build microservices. It uses HTTP for communication between client and the API Gateway, and gRPC for communication between services. alt text

Create DB

psql postgres
CREATE DATABASE auth_svc;
CREATE DATABASE order_svc;
CREATE DATABASE product_svc;
\l
\q