16 lines
358 B
YAML
16 lines
358 B
YAML
spring:
|
|
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 |