# http quarkus.http.port=8082 quarkus.http.test-port=8085 # security quarkus.http.auth.basic=true quarkus.http.auth.form.enabled=true quarkus.http.auth.form.http-only-cookie=true quarkus.http.auth.form.timeout=P30d quarkus.http.auth.form.landing-page= quarkus.http.auth.form.login-page= quarkus.http.auth.form.error-page= # websocket quarkus.websocket.dispatch-to-worker=true # database quarkus.datasource.db-kind=h2 quarkus.liquibase.change-log=migrations.xml quarkus.liquibase.migrate-at-start=true # shutdown quarkus.shutdown.timeout=5s # native quarkus.native.march=compatibility # dev profile overrides %dev.quarkus.http.port=8083 %dev.quarkus.http.auth.session.encryption-key=123456789012345678901234567890 %dev.quarkus.log.category."com.commafeed".level=DEBUG # %dev.quarkus.hibernate-orm.log.sql=true # test profile overrides %test.quarkus.log.category."org.mockserver".level=WARN %test.quarkus.log.category."liquibase".level=WARN %test.commafeed.users.create-demo-account=true %test.commafeed.users.allow-registrations=true %test.commafeed.password-recovery-enabled=true # prod profile overrides %prod.quarkus.datasource.jdbc.url=jdbc:h2:./data/db;DEFRAG_ALWAYS=TRUE %prod.quarkus.datasource.username=sa %prod.quarkus.datasource.password=sa %prod.quarkus.log.category."com.rometools.modules".level=ERROR