Here is list of all microservices that with different responsibilities:
- api-gateway - single point of entry for client/front-end
- user-service - user accounts, authorization, JWT tokens, all stuff related to this is here
- board-service - domain for kanban, boards data is saved here
- activity-service - all activity logs are being processed in this microservice
- notification-service - real-time notifications with WebSocket
In case of rebuild docker service, use it:
$ docker-compose up --build -d user-service
And to access any micro-service container, use it:
$ docker-compose exec user-service php artisan route:list