nclazz-mail-relay/src/main/resources/application.properties

18 lines
576 B
Properties

# DDL auto schema generation (update, create, create-drop, none, validate)
spring.jpa.hibernate.ddl-auto=update
spring.datasource.url=jdbc:h2:file:./test-db
management.endpoints.enabled-by-default=false
management.endpoints.web.exposure.include=info,health
management.endpoint.info.enabled=true
management.endpoint.health.enabled=true
spring.mail.username=${MAIL_USERNAME}
spring.mail.password=${MAIL_PASSWORD}
spring.mail.host=smtp.nclazz.de
spring.mail.port=25
spring.mail.protocol=smtp
nclazz.auth.token=${AUTH_TOKEN}
spring.liquibase.change-log=classpath:db/master.xml