diff --git a/app/components/QuickStartBlock.tsx b/app/components/QuickStartBlock.tsx index eb216f01..787e23b7 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; @@ -186,6 +186,7 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE -p 9000:9000 -p 3000:3000 {renderLineContinuation()} {'\n'} + ARCHESTRA_NGROK_AUTH_TOKEN {' '}-e ARCHESTRA_QUICKSTART=true {' '} {renderLineContinuation()} @@ -193,7 +194,7 @@ export default function QuickStartBlock({ showExposureOverlay = false }: { showE {ngrokKey && ( <> - {' '}-e NGROK_API_KEY={ngrokKey} + {' '}-e ARCHESTRA_NGROK_AUTH_TOKEN={ngrokKey} {' '} {renderLineContinuation()} {'\n'} @@ -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