42 lines
798 B
YAML
42 lines
798 B
YAML
spring:
|
|
application:
|
|
name: "jeobeardy"
|
|
jpa:
|
|
show-sql: true
|
|
hibernate:
|
|
auto-ddl: create
|
|
generate-ddl: true
|
|
properties:
|
|
hibernate:
|
|
dialect: org.hibernate.dialect.PostgreSQLDialect
|
|
default-schema: jeobeardy-app
|
|
open-in-view: false
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 1MB
|
|
max-request-size: 40MB
|
|
session:
|
|
store-type: jdbc
|
|
jdbc:
|
|
initialize-schema: always
|
|
# redis:
|
|
# flush-mode: on_save
|
|
# namespace: spring:session
|
|
# data:
|
|
# redis:
|
|
# host: localhost
|
|
# password:
|
|
# port: 6379
|
|
|
|
server:
|
|
address: localhost
|
|
port: 8008
|
|
# servlet:
|
|
# session:
|
|
# timeout:
|
|
|
|
application:
|
|
cors-allowed-methods: ["GET", "POST", "PUT", "DELETE", "OPTIONS"]
|
|
storage:
|
|
fs:
|
|
location: "files" |