You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
440 B
15 lines
440 B
spring:
|
|
datasource:
|
|
url: jdbc:postgresql://${AZURE_DB_HOST}:5432/${AZURE_DB_NAME}?sslmode=require
|
|
driver-class-name: org.postgresql.Driver
|
|
username: ${AZURE_DB_USER}
|
|
password: ${AZURE_DB_PASSWORD}
|
|
jpa:
|
|
database-platform: org.hibernate.dialect.PostgreSQLDialect
|
|
properties:
|
|
hibernate:
|
|
jdbc:
|
|
lob:
|
|
non_contextual_creation: true
|
|
cors:
|
|
allowed-origins: ${AZURE_STATIC_WEBAPP_URL} |