Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 523 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 523 Bytes

user-server

A simple gRPC server practice using MongoDB with repository design pattern

Layers

  • Controller
  • Repository Layer

Features

  • CRUD operations
  • Indexing
  • gRPC registry support
  • Graceful shutdown

Database

To spin up the database, use the provided docker-compose.yml file:

docker-compose up -d

Generate .proto files

To generate the protocol buffer files using buf (should already be installed):

buf generate && buf generate --template buf.gen.tag.yaml

TODO