Skip to content

Commit 6aa4bfd

Browse files
committed
Aligns transports in the interfaces between microservices and common.
1 parent 2c032ad commit 6aa4bfd

7 files changed

Lines changed: 631 additions & 4 deletions

File tree

integration/docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ services:
2323
- "9001:9001"
2424
restart: always
2525
mysql:
26+
container_name: test-mysql
2627
image: mysql:5.7.26
2728
environment:
2829
MYSQL_ROOT_PASSWORD: root
@@ -31,12 +32,14 @@ services:
3132
- "3306:3306"
3233
restart: always
3334
mongodb:
35+
container_name: test-mongodb
3436
image: mongo:latest
3537
environment:
3638
- MONGODB_DATABASE="test"
3739
ports:
3840
- 27017:27017
3941
rabbit:
42+
container_name: test-rabbit
4043
hostname: rabbit
4144
image: "rabbitmq:management"
4245
ports:

packages/common/enums/transport.enum.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ export enum Transport {
55
MQTT,
66
GRPC,
77
RMQ,
8+
KAFKA
89
}

0 commit comments

Comments
 (0)