Skip to content

Bridge Setup

Use this page to configure the core bridge runtime.

Required Settings

KeyTypeDescription
BridgeConfig.EndpointstringSignalR hub URL used by the dashboard.
BridgeConfig.ApiKeystringSecret key for bridge authentication.
BridgeConfig.ReconnectDelaySecondsintDelay before reconnect attempts.

Example

json
{
  "BridgeConfig": {
    "Endpoint": "https://your-hub.production.com",
    "ApiKey": "YOUR_SECRET_KEY",
    "ReconnectDelaySeconds": 5,
    "MaxRetryCount": 20
  }
}

Operational Notes

  • Keep API keys in environment-specific secret storage.
  • Start with low reconnect delay in staging, then tune for production.
  • Validate endpoint TLS certificate before enabling live accounts.

Released under the MIT License.