Skip to content

Commit a1a6d35

Browse files
authored
Merge pull request #28 from arey/feature/genai-service
Add the configuration file of the new microservice genai-service
2 parents df52981 + a2a2b97 commit a1a6d35

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

genai-service.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
spring:
2+
config:
3+
activate:
4+
on-profile: default
5+
eureka:
6+
instance:
7+
# enable to register multiple app instances with a random server port
8+
instance-id: ${spring.application.name}:${random.uuid}
9+
10+
---
11+
spring:
12+
config:
13+
activate:
14+
on-profile: docker
15+
server:
16+
port: 8084
17+
eureka:
18+
client:
19+
serviceUrl:
20+
defaultZone: http://discovery-server:8761/eureka/
21+
management:
22+
zipkin:
23+
tracing:
24+
endpoint: http://tracing-server:9411/api/v2/spans

0 commit comments

Comments
 (0)