1
0
mirror of https://github.com/ebosas/microservices.git synced 2025-06-24 22:26:56 +02:00
Go to file
2021-06-02 15:02:51 +03:00
2021-06-01 14:31:49 +03:00
2021-06-02 12:38:11 +03:00
2021-06-02 14:43:57 +03:00
2021-06-02 15:02:51 +03:00
2021-06-02 12:38:11 +03:00
2021-06-02 12:38:11 +03:00
2021-06-01 14:26:02 +03:00
2021-06-02 14:43:57 +03:00
2021-06-01 14:26:02 +03:00
2021-06-01 09:03:48 +03:00
2021-06-02 14:43:57 +03:00

Microservices

A basic example of microservice architecture which demonstrates communication between a few loosely coupled services.

  • Written in Go
  • Uses RabbitMQ to communicate between services
  • Uses WebSocket to talk to the front end
  • Stores data in PostgreSQL
  • Uses React for front end development
  • Builds and runs the application with Docker

Running the code

To run the example, clone the Github repository and start the services with Docker Compose. Once Docker finishes downloading and building images, the front end is accessible by visiting localhost:8080 in a browser.

git clone https://github.com/ebosas/microservices
cd microservices
docker-compose up

Back end

To access the back end service, attach to its docker container from a separate terminal window. Messages from the front end will show up here. Also, standart input from this service is sent to the front end for two way communication.

docker attach microservices_backend

Database

To inspect the database, launch a new container that will connect to our Postgres database. Then enter the password demopsw (see the .env file).

docker run -it --rm --network microservices_network postgres:13-alpine psql -h postgres -U postgres

Select everything from the messages table:

\c microservices
select * from messages;

RabbitMQ management

Access the RabbitMQ management interface by visiting localhost:15672 with guest as both username and password.

Languages
Go 58.6%
TypeScript 19.9%
HTML 10.1%
Dockerfile 6%
SCSS 5.4%