22 lines
478 B
YAML
22 lines
478 B
YAML
spring:
|
|
cloud:
|
|
compatibility-verifier:
|
|
enabled: false
|
|
datasource:
|
|
url: jdbc:postgresql://${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}
|
|
username: ${POSTGRES_USER}
|
|
password: ${POSTGRES_PASSWORD}
|
|
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: update
|
|
|
|
server:
|
|
port: 8082
|
|
|
|
jwt:
|
|
secret: Z29nb3Bvd2VycmFuZ2VydHVtYmF5YW1iZjMyNDIyMjh3aW5lcndpbmVy
|
|
expiration: 3600000
|
|
|
|
nocopy-dashboard:
|
|
url: http://localhost:3001 |