.env or enterprise.env file before starting the deployment.
Enterprise launcher
The enterprise launcher starts and coordinates the services in your production stack. Use these variables to connect the launcher to shared infrastructure and provide the license used at startup..env
| Environment variable | Description |
|---|---|
ENTERPRISE_POSTGRES_URL | Postgres connection string used by the launcher to derive the Core and Plane database connections. Point this at the Postgres server that hosts both databases. |
ENTERPRISE_REDIS_URL | Redis connection string passed to Core for queueing, caching, and other Redis-backed runtime work. |
ENTERPRISE_LICENSE_B64 | Base64-encoded license string from your onboarding email. To use a mounted license file instead, set ENTERPRISE_LICENSE_FILE to the path of your .lic file. |
ENTERPRISE_CORE_DB_NAME | Name of the Postgres database the launcher assigns to Blnk Core ledger data. |
ENTERPRISE_PLANE_DB_NAME | Name of the Postgres database the launcher assigns to Plane, which powers the Cloud Dashboard. |
Public app configuration
These variables control how users reach the deployment and how the launcher connects the internal services. Use the public values for browser access and the internal port values only when you need to change service bindings..env
| Environment variable | Description |
|---|---|
ENTERPRISE_PUBLIC_PORT | Port the launcher exposes for the public Plane gateway. Map your host or load balancer to this port when running the deployment. |
ENTERPRISE_PUBLIC_URL | Public URL where users open the Cloud Dashboard, including the scheme such as https://. Use the same origin in CORS_ORIGINS. |
ENTERPRISE_CORE_PORT | Internal port used by the Blnk Core API process. |
ENTERPRISE_WORKERS_PORT | Internal port used by the Core workers monitoring endpoint. |
ENTERPRISE_UI_PORT | Internal port used by the Cloud Dashboard UI process. |