🗃️ Database config fixed

This commit is contained in:
andreas.dinauer 2025-10-26 19:13:44 +01:00
parent c07d177a24
commit 51e0158b8b

View File

@ -20,4 +20,8 @@ dev.dinauer.kubooboo.work.dir=/var/lib/kubooboo/work
%dev.quarkus.datasource.username = postgres %dev.quarkus.datasource.username = postgres
%dev.quarkus.datasource.password = postgres %dev.quarkus.datasource.password = postgres
%dev.quarkus.datasource.jdbc.url = jdbc:postgresql://localhost:6666/postgres %dev.quarkus.datasource.jdbc.url = jdbc:postgresql://localhost:6666/postgres
%dev,test.quarkus.hibernate-orm.schema-management.strategy=drop-and-create %dev,test.quarkus.hibernate-orm.schema-management.strategy=drop-and-create
# Prod
%prod.quarkus.datasource.username=${DB_USER}
%prod.quarkus.datasource.password=${DB_PASSWORD}
%prod.quarkus.datasource.jdbc.url=jdbc:postgresql://${DB_HOST}:${DB_PORT}/${DB_DATABASE}?currentSchema=${DB_SCHEMA}