forked from indiagator/code22-config-server-properties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseller-service-prod.properties
31 lines (25 loc) · 1.31 KB
/
seller-service-prod.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
service.name= seller-service
spring.jpa.hibernate.ddl-auto=none
spring.jpa.database=POSTGRESQL
spring.datasource.platform=postgres
spring.jpa.show-sql = true
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
spring.database.driverClassName= org.postgresql.Driver
spring.datasource.username= postgres
spring.datasource.password= Dedsec_7
spring.datasource.url= jdbc:postgresql://cbt.crkd2ofk8zyf.ap-south-1.rds.amazonaws.com:5432/cbt
spring.datasource.testWhileIdle = true
spring.datasource.validationQuery = SELECT 1
spring.kafka.consumer.bootstrap-servers= kafka-server:9091
spring.kafka.consumer.group-id= group-id
spring.kafka.consumer.auto-offset-reset=earliest
spring.kafka.consumer.key-deserializer= org.apache.kafka.common.serialization.StringDeserializer
spring.kafka.consumer.value-deserializer= org.apache.kafka.common.serialization.StringDeserializer
eureka.instance.preferIpAddress= true
eureka.client.registerWithEureka= true
eureka.client.fetchRegistry= true
eureka.client.serviceUrl.defaultZone= http://eureka-server:8070/eureka
zipkin.baseUrl: http://zipkin:9411
management.endpoints.web.exposure.include= health, metrics, prometheus
management.metrics.tags.application=${spring.application.name}