@lead-routing/cli 0.8.5 → 0.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -300,8 +300,8 @@ function renderDockerCompose(c) {
|
|
|
300
300
|
image: ghcr.io/atgatzby/lead-routing-mcp:latest
|
|
301
301
|
restart: unless-stopped
|
|
302
302
|
environment:
|
|
303
|
-
APP_URL: http://web:3000
|
|
304
|
-
ENGINE_URL: http://engine:3001
|
|
303
|
+
APP_URL: ${c.mcpAppUrl ?? "http://web:3000"}
|
|
304
|
+
ENGINE_URL: ${c.mcpEngineUrl ?? "http://engine:3001"}
|
|
305
305
|
API_TOKEN: ${c.mcpApiToken ?? ""}
|
|
306
306
|
WEBHOOK_SECRET: ${c.mcpWebhookSecret ?? ""}
|
|
307
307
|
CRM_TYPE: ${c.mcpCrmType ?? "salesforce"}
|
|
@@ -610,6 +610,8 @@ function generateFiles(cfg, sshCfg, license = { licenseTier: "free" }, agentApi)
|
|
|
610
610
|
langfuseSalt: agentApi?.langfuseSalt,
|
|
611
611
|
managedMcp: !!agentApi,
|
|
612
612
|
mcpUrl: cfg.mcpUrl,
|
|
613
|
+
mcpAppUrl: cfg.appUrl,
|
|
614
|
+
mcpEngineUrl: cfg.engineUrl,
|
|
613
615
|
mcpWebhookSecret: cfg.engineWebhookSecret,
|
|
614
616
|
mcpCrmType: cfg.crmType
|
|
615
617
|
});
|