mirror of
https://github.com/cna-bootcamp/lifesub.git
synced 2025-12-06 16:16:22 +00:00
26 lines
513 B
YAML
26 lines
513 B
YAML
server:
|
|
port: ${SERVER_PORT:8082}
|
|
|
|
spring:
|
|
application:
|
|
name: mysub-service
|
|
datasource:
|
|
url: ${POSTGRES_URL}
|
|
username: ${POSTGRES_USER}
|
|
password: ${POSTGRES_PASSWORD}
|
|
driver-class-name: org.postgresql.Driver
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: ${JPA_DDL_AUTO:validate}
|
|
show-sql: ${JPA_SHOW_SQL:false}
|
|
properties:
|
|
hibernate:
|
|
format_sql: true
|
|
|
|
allowedorigins: ${ALLOWED_ORIGINS:*}
|
|
|
|
springdoc:
|
|
swagger-ui:
|
|
path: /swagger-ui.html
|
|
api-docs:
|
|
path: /api-docs |