24 lines
960 B
Text
24 lines
960 B
Text
# Admin Dashboard - Build Environment
|
|
# These vars are baked into the React build at docker build time.
|
|
# Runtime env vars come from docker-compose.yml.
|
|
REACT_APP_SERVER_HOST=10.11.10.11
|
|
REACT_APP_HOST=10.11.10.11
|
|
# Keycloak — local on didi11, proxied through admin nginx at /auth/
|
|
REACT_APP_KEYCLOAK_URL=CHANGE_ME
|
|
REACT_APP_KEYCLOAK_REALM=CHANGE_ME
|
|
REACT_APP_KEYCLOAK_CLIENT_ID=CHANGE_ME
|
|
# API — through local Kong (admin nginx /api/ → didi-kong:8000)
|
|
REACT_APP_API_BASE_URL=https://10.11.10.11:3001
|
|
# Staging Mode (bypasses Keycloak auth — disable in production!)
|
|
REACT_APP_STAGING_MODE=false
|
|
# Service Ports (displayed on service cards)
|
|
REACT_APP_KEYCLOAK_PORT=CHANGE_ME
|
|
REACT_APP_KONG_PROXY_PORT=443
|
|
REACT_APP_KONG_ADMIN_PORT=18101
|
|
REACT_APP_KONG_MANAGER_PORT=18102
|
|
REACT_APP_POSTGRES_PORT=5000
|
|
REACT_APP_PGADMIN_PORT=5050
|
|
REACT_APP_REDIS_PORT=6379
|
|
REACT_APP_COMMANDER_PORT=8081
|
|
REACT_APP_RABBITMQ_MGMT_PORT=15672
|
|
REACT_APP_MINIO_CONSOLE_PORT=9001
|