komga/application-postgresql.yml
duong.doan1 36ab2efc54 test: Add scripts folder and PostgreSQL test configuration
- Move migration conversion scripts to scripts/ folder
- Create application-postgresql.yml for PostgreSQL testing
- Fix ktlint trailing space error in build.gradle.kts
- Test SQLite backend successfully (runs on port 25600)
- Test PostgreSQL connection (authentication fixed, but migration timeout)
2026-04-07 14:54:48 +07:00

31 lines
No EOL
632 B
YAML

application.version: 1.0
komga:
database:
type: postgresql
url: jdbc:postgresql://localhost:5433/komga
username: komga
password: komga123
config-dir: /tmp/komga-postgres
tasks-db:
file: /tmp/komga-postgres/tasks.sqlite
spring:
flyway:
enabled: true
locations: classpath:db/migration/{vendor}
mixed: true
placeholders:
library-file-hashing: true
library-scan-startup: false
delete-empty-collections: true
delete-empty-read-lists: true
server:
port: 25601
logging:
level:
org.gotson.komga: INFO
org.flywaydb: DEBUG
org.springframework.jdbc: DEBUG