31 lines
560 B
YAML
31 lines
560 B
YAML
spring:
|
|
profiles:
|
|
active: test
|
|
datasource:
|
|
url: jdbc:postgresql://localhost:5432/mtgsearch_test
|
|
username: postgres
|
|
password: postgres
|
|
driver-class-name: org.postgresql.Driver
|
|
hikari:
|
|
maximum-pool-size: 5
|
|
|
|
jpa:
|
|
database-platform: org.hibernate.dialect.PostgreSQLDialect
|
|
hibernate:
|
|
ddl-auto: create-drop
|
|
show-sql: false
|
|
|
|
flyway:
|
|
enabled: true
|
|
baseline-on-migrate: true
|
|
|
|
app:
|
|
jwt:
|
|
secret: test-secret-key
|
|
expiration: 3600
|
|
|
|
logging:
|
|
level:
|
|
root: WARN
|
|
net.moustos.mtgsearch: DEBUG
|