Appearance
Bridge Setup
Use this page to configure the core bridge runtime.
Required Settings
| Key | Type | Description |
|---|---|---|
BridgeConfig.Endpoint | string | SignalR hub URL used by the dashboard. |
BridgeConfig.ApiKey | string | Secret key for bridge authentication. |
BridgeConfig.ReconnectDelaySeconds | int | Delay 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.