komga/application-postgresql-test.properties
duong.doan1 5929233ff7 feat: Complete Sprint 3 PostgreSQL UDF implementations and testing
- Complete PostgresUdfProvider implementations (REGEXP, strip accents, collation)
- Add regexp method to DatabaseUdfProvider interface
- Update SqliteUdfProvider with regexp implementation
- Add regexp helper to JooqUdfHelper
- Fix PostgreSQL connection configuration issues
- Create PostgreSQL test configuration files
- Update build.gradle.kts with PostgreSQL dependencies
- Fix application-test.yml template processing issues
- Remove temporary migration conversion scripts
- Update task tracking documentation
2026-04-07 16:37:27 +07:00

35 lines
No EOL
1.3 KiB
INI

komga.database.type=POSTGRESQL
komga.database.url=jdbc:postgresql://localhost:5433/komga
komga.database.username=komga
komga.database.password=komga123
komga.database.pool-size=10
komga.database.max-pool-size=10
spring.datasource.tasks.type=com.zaxxer.hikari.HikariDataSource
spring.datasource.tasks.jdbc-url=jdbc:sqlite:file:${user.home}/.komga/tasks.sqlite?foreign_keys=on&busy_timeout=10000&journal_mode=WAL&synchronous=NORMAL
spring.datasource.tasks.driver-class-name=org.sqlite.JDBC
spring.datasource.tasks.hikari.maximum-pool-size=1
spring.datasource.tasks.hikari.minimum-idle=1
spring.datasource.tasks.hikari.connection-timeout=30000
spring.datasource.tasks.hikari.idle-timeout=600000
spring.datasource.tasks.hikari.max-lifetime=1800000
spring.flyway.enabled=true
spring.flyway.locations=classpath:db/migration/postgresql
spring.flyway.baseline-on-migrate=true
spring.flyway.validate-on-migrate=false
spring.flyway.placeholders.library-file-hashing=true
spring.flyway.placeholders.library-scan-startup=false
spring.flyway.placeholders.delete-empty-collections=true
spring.flyway.placeholders.delete-empty-read-lists=true
spring.jpa.hibernate.ddl-auto=validate
spring.jooq.sql-dialect=postgres
komga.database.type=POSTGRESQL
server.port=25601
logging.level.org.flywaydb=DEBUG
logging.level.org.springframework.jdbc=DEBUG