import sources from develop/0.1.0
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
app:
|
||||
name: 'Kontor'
|
||||
shortName: 'Kontor'
|
||||
description: 'Kontor is a Spring Boot application'
|
||||
spring:
|
||||
profiles:
|
||||
active: local,dev,test,prod
|
||||
jpa:
|
||||
defer-datasource-initialization: true
|
||||
#hibernate.ddl-auto=create-drop
|
||||
hibernate:
|
||||
ddl-auto: update
|
||||
#ddl-auto: create-drop
|
||||
show-sql: true
|
||||
properties:
|
||||
hibernate:
|
||||
dialect: org.hibernate.dialect.PostgreSQLDialect
|
||||
sql:
|
||||
init:
|
||||
mode: never
|
||||
mustache:
|
||||
check-template-location: false
|
||||
servlet:
|
||||
multipart:
|
||||
max-file-size: 10MB
|
||||
max-request-size: 10MB
|
||||
management:
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: "*"
|
||||
endpoint:
|
||||
health:
|
||||
show-details: always
|
||||
logging:
|
||||
level:
|
||||
org:
|
||||
atmosphere: INFO
|
||||
hibernate: INFO
|
||||
springframework:
|
||||
web: INFO
|
||||
guru:
|
||||
springframework:
|
||||
controllers: DEBUG
|
||||
jwt:
|
||||
auth:
|
||||
secret: 'J6GOtcwC2NJI1l0VkHu20PacPFGTxpirBxWwynoHjsc='
|
||||
mail:
|
||||
protocol: 'imap'
|
||||
host: 'corky.svpdata.eu'
|
||||
port: 143
|
||||
userName: 'thomas.peetz@thpeetz.de'
|
||||
password: 'fS9f4JYDIO7A'
|
||||
starttls: true
|
||||
---
|
||||
spring:
|
||||
config:
|
||||
activate:
|
||||
on-profile: prod
|
||||
datasource:
|
||||
url: jdbc:postgresql://postgres:5432/kontor
|
||||
username: 'kontor'
|
||||
password: 'kontor'
|
||||
server:
|
||||
port: 8000
|
||||
---
|
||||
spring:
|
||||
config:
|
||||
activate:
|
||||
on-profile: local, dev, test
|
||||
devtools:
|
||||
add-properties: false
|
||||
datasource:
|
||||
url: jdbc:postgresql://localhost:5432/kontor
|
||||
username: kontor
|
||||
password: kontor
|
||||
server:
|
||||
port: 8085
|
||||
Reference in New Issue
Block a user