From 8a9abd57960bf3c97e53e2d99526d3a1937f724c Mon Sep 17 00:00:00 2001 From: brojd Date: Tue, 10 Feb 2026 06:39:51 +0100 Subject: [PATCH 1/6] chore: update ngrok env var name --- app/components/QuickStartBlock.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/QuickStartBlock.tsx b/app/components/QuickStartBlock.tsx index eb216f01..6177c0b0 100644 --- a/app/components/QuickStartBlock.tsx +++ b/app/components/QuickStartBlock.tsx @@ -22,7 +22,7 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE setShell('powershell'); } }, []); - +ARCHESTRA_NGROK_AUTH_TOKEN const lc = shell === 'bash' ? '\\' : '`'; const getQuickstartCommand = () => { @@ -185,7 +185,7 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE docker run{' '} -p 9000:9000 -p 3000:3000 {renderLineContinuation()} {'\n'} - + ARCHESTRA_NGROK_AUTH_TOKEN {' '}-e ARCHESTRA_QUICKSTART=true {' '} {renderLineContinuation()} From 4212f19bcc4896ff12326bba7b47ac4415850f46 Mon Sep 17 00:00:00 2001 From: brojd Date: Tue, 10 Feb 2026 06:58:37 +0100 Subject: [PATCH 2/6] update --- app/components/QuickStartBlock.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/app/components/QuickStartBlock.tsx b/app/components/QuickStartBlock.tsx index 6177c0b0..4e7668b8 100644 --- a/app/components/QuickStartBlock.tsx +++ b/app/components/QuickStartBlock.tsx @@ -22,7 +22,6 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE setShell('powershell'); } }, []); -ARCHESTRA_NGROK_AUTH_TOKEN const lc = shell === 'bash' ? '\\' : '`'; const getQuickstartCommand = () => { From bda48c78417874c56ffa8c06d62bd1966dc3580f Mon Sep 17 00:00:00 2001 From: brojd Date: Tue, 10 Feb 2026 06:58:58 +0100 Subject: [PATCH 3/6] update --- app/components/QuickStartBlock.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/QuickStartBlock.tsx b/app/components/QuickStartBlock.tsx index 4e7668b8..d3b134ea 100644 --- a/app/components/QuickStartBlock.tsx +++ b/app/components/QuickStartBlock.tsx @@ -22,6 +22,7 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE setShell('powershell'); } }, []); + const lc = shell === 'bash' ? '\\' : '`'; const getQuickstartCommand = () => { From 92e7988fc171b8ebba96a3d265afe670de0bd012 Mon Sep 17 00:00:00 2001 From: brojd Date: Tue, 10 Feb 2026 06:59:21 +0100 Subject: [PATCH 4/6] update --- app/components/QuickStartBlock.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/QuickStartBlock.tsx b/app/components/QuickStartBlock.tsx index d3b134ea..1fa51f47 100644 --- a/app/components/QuickStartBlock.tsx +++ b/app/components/QuickStartBlock.tsx @@ -22,7 +22,7 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE setShell('powershell'); } }, []); - + const lc = shell === 'bash' ? '\\' : '`'; const getQuickstartCommand = () => { From f8301590e6958972f2b852e918330da94dc042ce Mon Sep 17 00:00:00 2001 From: brojd Date: Tue, 10 Feb 2026 07:00:09 +0100 Subject: [PATCH 5/6] update --- app/components/QuickStartBlock.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/QuickStartBlock.tsx b/app/components/QuickStartBlock.tsx index 1fa51f47..3fedef20 100644 --- a/app/components/QuickStartBlock.tsx +++ b/app/components/QuickStartBlock.tsx @@ -28,7 +28,7 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE const getQuickstartCommand = () => { const base = `docker pull archestra/platform:latest;\ndocker run -p 9000:9000 -p 3000:3000 ${lc}\n -e ARCHESTRA_QUICKSTART=true ${lc}`; let extra = ''; - if (ngrokKey) extra += `\n -e NGROK_API_KEY=${ngrokKey} ${lc}`; + if (ngrokKey) extra += `\n -e ARCHESTRA_NGROK_AUTH_TOKEN=${ngrokKey} ${lc}`; if (customDomain) extra += `\n -e ARCHESTRA_API_BASE_URL=${customDomain} ${lc}`; const suffix = `\n -v /var/run/docker.sock:/var/run/docker.sock ${lc}\n -v archestra-postgres-data:/var/lib/postgresql/data ${lc}\n -v archestra-app-data:/app/data ${lc}\n archestra/platform;`; return base + extra + suffix; @@ -193,7 +193,7 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE {ngrokKey && ( <> - {' '}-e NGROK_API_KEY={ngrokKey} + {' '}-e ARCHESTRA_NGROK_AUTH_TOKEN={ngrokKey} {' '} {renderLineContinuation()} {'\n'} From 1a360883b49cee732fe0ac02128b01fd28189d3e Mon Sep 17 00:00:00 2001 From: brojd Date: Tue, 10 Feb 2026 07:06:26 +0100 Subject: [PATCH 6/6] formatting --- app/components/QuickStartBlock.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/app/components/QuickStartBlock.tsx b/app/components/QuickStartBlock.tsx index 3fedef20..787e23b7 100644 --- a/app/components/QuickStartBlock.tsx +++ b/app/components/QuickStartBlock.tsx @@ -185,7 +185,8 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE docker run{' '} -p 9000:9000 -p 3000:3000 {renderLineContinuation()} {'\n'} - ARCHESTRA_NGROK_AUTH_TOKEN + + ARCHESTRA_NGROK_AUTH_TOKEN {' '}-e ARCHESTRA_QUICKSTART=true {' '} {renderLineContinuation()} @@ -214,8 +215,7 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE {' '}-v archestra-postgres-data:/var/lib/postgresql/data{' '} {renderLineContinuation()} {'\n'} - {' '}-v archestra-app-data:/app/data{' '} - {renderLineContinuation()} + {' '}-v archestra-app-data:/app/data {renderLineContinuation()} {'\n'} {' '}archestra/platform @@ -415,8 +415,7 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE archestra.env.HOSTNAME ="0.0.0.0" {renderLineContinuation()} {'\n'} - {' '}--create-namespace{' '} - {renderLineContinuation()} + {' '}--create-namespace {renderLineContinuation()} {'\n'} {' '}--wait