| 1 | spring: |
| 2 | datasource: |
| 3 | url: jdbc:h2:mem:auth;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE;DEFAULT_NULL_ORDERING=HIGH;INIT=CREATE SCHEMA IF NOT EXISTS auth |
| 4 | username: sa |
| 5 | password: |
| 6 | driver-class-name: org.h2.Driver |
| 7 | jpa: |
| 8 | hibernate: |
| 9 | ddl-auto: validate |
| 10 | open-in-view: false |
| 11 | flyway: |
| 12 | enabled: true |
| 13 | auth: |
| 14 | issuer: test-auth-issuer |
| 15 | jwt-secret: test-auth-jwt-secret-at-least-32-characters |
| 16 | token-ttl-seconds: 300 |
| 17 | verification-token-ttl-seconds: 3600 |
| 18 | password-reset-token-ttl-seconds: 3600 |
| 19 | dev-login-enabled: false |
| 20 | email-mode: DISABLED |
| 21 | smtp-port: 587 |