config: адреса инфраструктуры на localhost (application-dev/docker-local, create_pcp_databases)
This commit is contained in:
@@ -1,16 +1,16 @@
|
|||||||
# TODO before merge request: вернуть старые адреса окружения.
|
# TODO before merge request: вернуть старые адреса окружения.
|
||||||
# pcp.infra.postgres.host: 192.168.60.146
|
# pcp.infra.postgres.host: localhost
|
||||||
pcp:
|
pcp:
|
||||||
infra:
|
infra:
|
||||||
postgres:
|
postgres:
|
||||||
host: 192.168.60.146
|
host: localhost
|
||||||
port: 35400
|
port: 35400
|
||||||
kafka:
|
kafka:
|
||||||
host: 192.168.60.146
|
host: localhost
|
||||||
port: 19092
|
port: 19092
|
||||||
|
|
||||||
network:
|
network:
|
||||||
host: 192.168.60.146
|
host: localhost
|
||||||
|
|
||||||
ports:
|
ports:
|
||||||
config: 8888
|
config: 8888
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ spring:
|
|||||||
camunda:
|
camunda:
|
||||||
client:
|
client:
|
||||||
enabled: ${CAMUNDA_CLIENT_ENABLED:false}
|
enabled: ${CAMUNDA_CLIENT_ENABLED:false}
|
||||||
grpc-address: ${CAMUNDA_GRPC_ADDRESS:http://192.168.60.146:26500}
|
grpc-address: ${CAMUNDA_GRPC_ADDRESS:http://localhost:26500}
|
||||||
auth:
|
auth:
|
||||||
method: none
|
method: none
|
||||||
prefer-rest-over-grpc: false
|
prefer-rest-over-grpc: false
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ set -euo pipefail
|
|||||||
|
|
||||||
# PostgreSQL connection settings. Override via env if needed:
|
# PostgreSQL connection settings. Override via env if needed:
|
||||||
# PGHOST=... PGPORT=... PGUSER=... PGPASSWORD=... ./create_pcp_databases.sh
|
# PGHOST=... PGPORT=... PGUSER=... PGPASSWORD=... ./create_pcp_databases.sh
|
||||||
PGHOST="${PGHOST:-192.168.60.146}"
|
PGHOST="${PGHOST:-localhost}"
|
||||||
PGPORT="${PGPORT:-5432}"
|
PGPORT="${PGPORT:-5432}"
|
||||||
PGUSER="${PGUSER:-postgres}"
|
PGUSER="${PGUSER:-postgres}"
|
||||||
PGPASSWORD="${PGPASSWORD:-password}"
|
PGPASSWORD="${PGPASSWORD:-password}"
|
||||||
|
|||||||
Reference in New Issue
Block a user