22 lines
478 B
YAML
22 lines
478 B
YAML
# Test configuration
|
|
quarkus:
|
|
datasource:
|
|
db-kind: h2
|
|
username: sa
|
|
password: ""
|
|
jdbc:
|
|
url: jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
|
|
|
|
hibernate-orm:
|
|
database:
|
|
generation: drop-and-create
|
|
log:
|
|
sql: false
|
|
|
|
flyway:
|
|
migrate-at-start: false
|
|
|
|
# JWT Configuration for tests
|
|
jwt:
|
|
secret: test-secret-key-for-jwt-token-generation-that-is-long-enough-for-hmac-sha256-algorithm-requirements
|
|
expiration: 3600 |