-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathapplication.properties
More file actions
23 lines (18 loc) · 921 Bytes
/
application.properties
File metadata and controls
23 lines (18 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
spring.application.name=ftgo-order-service
management.endpoint.health.show-details=always
spring.sleuth.sampler.probability=1.0
management.endpoints.web.exposure.include=health,prometheus,beans,endpoints
logging.level.org.springframework.cloud=INFO
spring.jpa.generate-ddl=true
logging.level.org.springframework.orm.jpa=INFO
logging.level.org.hibernate.SQL=DEBUG
logging.level.io.eventuate=DEBUG
logging.level.net.chrisrichardson.ftgo=DEBUG
logging.level.io.eventuate.tram=DEBUG
eventuate.database.schema=none
spring.datasource.url=jdbc:mysql://${DOCKER_HOST_IP:-localhost}/ftgo_delivery_service
spring.datasource.username=ftgo_delivery_service_user
spring.datasource.password=ftgo_delivery_service_password
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
eventuatelocal.kafka.bootstrap.servers=${DOCKER_HOST_IP:-localhost}:9092
eventuatelocal.zookeeper.connection.string=${DOCKER_HOST_IP:-localhost}:2181