32 lines
516 B
YAML
32 lines
516 B
YAML
spring:
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: create-drop
|
|
properties:
|
|
hibernate:
|
|
format_sql: true
|
|
show-sql: false
|
|
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 5MB
|
|
max-request-size: 10MB
|
|
|
|
storycove:
|
|
jwt:
|
|
secret: test-secret-key
|
|
expiration: 86400000
|
|
auth:
|
|
password: test-password
|
|
search:
|
|
engine: opensearch
|
|
opensearch:
|
|
host: localhost
|
|
port: 9200
|
|
scheme: http
|
|
images:
|
|
storage-path: /tmp/test-images
|
|
|
|
logging:
|
|
level:
|
|
com.storycove: DEBUG |