36 lines
1.2 KiB
Properties
36 lines
1.2 KiB
Properties
quarkus.http.root-path=/api/iam-backend
|
|
quarkus.http.port=8089
|
|
quarkus.http.test-port=9089
|
|
%dev.quarkus.http.host=0.0.0.0
|
|
|
|
quarkus.http.cors.enabled=true
|
|
%dev.quarkus.http.cors.origins=/.*/
|
|
|
|
# Postgres
|
|
prod.quarkus.hibernate-orm.validate-in-dev-mode=false
|
|
quarkus.hibernate-orm.schema-management.strategy=none
|
|
%test,dev.quarkus.hibernate-orm.schema-management.strategy=drop-and-create
|
|
quarkus.datasource.db-kind=postgresql
|
|
|
|
%dev,test.quarkus.datasource.username=postgres
|
|
%dev,test.quarkus.datasource.password=postgres
|
|
%dev,test.quarkus.datasource.jdbc.url=jdbc:postgresql://localhost:5432/postgres?currentSchema=auth
|
|
|
|
# Flyway
|
|
quarkus.flyway.enabled=false
|
|
%test.quarkus.flyway.clean-at-start=true
|
|
%dev.quarkus.flyway.clean-at-start=true
|
|
%dev.quarkus.flyway.locations=db/migration,db/dev
|
|
%test,dev.quarkus.flyway.migrate-at-start=false
|
|
quarkus.flyway.migrate-at-start=true
|
|
|
|
quarkus.http.access-log.enabled=true
|
|
quarkus.http.auth.basic=true
|
|
|
|
io.verifoo.http.origin=http://localhost:8089
|
|
|
|
%dev.io.verifoo.bootstrap.config.location=/home/andreas/Documents/dev/iam-backend/src/main/resources/bootstrap.yaml
|
|
%dev.io.verifoo.superuser.username=admin
|
|
%dev.io.verifoo.superuser.password=pw
|
|
|
|
%prod.io.verifoo.bootstrap.config.location=/var/lib/verifoo/bootstrap.yaml |