mirror of
https://github.com/gotson/komga.git
synced 2026-05-07 12:01:40 +02:00
- 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)
31 lines
No EOL
632 B
YAML
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 |