27 lines
456 B
YAML
27 lines
456 B
YAML
spring:
|
|||
|
|
application:
|
||
|
|
name: lms
|
||
|
|
|
||
|
|
datasource:
|
||
|
|
url: jdbc:postgresql://localhost:5432/aplp
|
||
|
|
username: postgres
|
||
|
|
password: Pa55w0rd
|
||
|
|
|
||
|
|
jpa:
|
||
|
|
hibernate:
|
||
|
|
ddl-auto: update
|
||
|
|
properties:
|
||
|
|
hibernate:
|
||
|
|
default_schema: lms
|
||
|
|
format_sql: true
|
||
|
|
show-sql: true
|
||
|
|
|
||
|
|
# flyway:
|
||
|
|
# enabled: true
|
||
|
|
# default-schema: lms
|
||
|
|
# schemas: lms
|
||
|
|
# locations: classpath:db/migration
|
||
|
|
|
||
|
|
springdoc:
|
||
|
|
swagger-ui:
|
||
|
|
path: /swagger-ui
|