diff --git a/.tc-environment b/.tc-environment index 595d0096..c1816e80 100644 --- a/.tc-environment +++ b/.tc-environment @@ -4,5 +4,4 @@ export HSADMINNG_POSTGRES_ADMIN_PASSWORD= export HSADMINNG_POSTGRES_RESTRICTED_USERNAME=restricted export HSADMINNG_SUPERUSER=superuser-alex@hostsharing.net export HSADMINNG_MIGRATION_DATA_PATH=migration -export LIQUIBASE_COMMAND_CONTEXT_FILTER= export LANG=en_US.UTF-8 diff --git a/.unset-environment b/.unset-environment index fbc180cc..6f00ada4 100644 --- a/.unset-environment +++ b/.unset-environment @@ -4,5 +4,4 @@ unset HSADMINNG_POSTGRES_ADMIN_PASSWORD unset HSADMINNG_POSTGRES_RESTRICTED_USERNAME unset HSADMINNG_SUPERUSER unset HSADMINNG_MIGRATION_DATA_PATH -unset LIQUIBASE_COMMAND_CONTEXT_FILTER diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 526a2a58..1ea27053 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -46,7 +46,7 @@ spring: dialect: net.hostsharing.hsadminng.config.PostgresCustomDialect liquibase: - contexts: dev,office + contexts: default,dev,office,pg_stat_statements # default just as a marker to show from which profile it comes # keep this in sync with test/.../application.yml springdoc: @@ -74,7 +74,7 @@ spring: activate: on-profile: dev-all liquibase: - contexts: dev,office,booking,hosting + contexts: dev,office,booking,hosting,pg_stat_statements --- @@ -84,7 +84,7 @@ spring: activate: on-profile: dev-office liquibase: - contexts: dev,office + contexts: dev,office,pg_stat_statements ---