Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 501 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 501 Bytes

TEWW

Golang microservice architecture sample. The sample includes 4 services with trivial names: client, auth, backend and db.

Client - web entrypoint for user.
Auth - JWT authentication implementation.
Backend - server side worker for processing users requests.
DB - storage for user data.

Ports

  • client :3000
  • auth :3001
  • backend :3002
  • db (redis) :6379

TODO

  • connect auth to db
  • add loader
  • add autorization functionality
  • add logs
  • add tests