From 2ed7158cf19f8f93b795443dcaf24d2e4ba6ef2d Mon Sep 17 00:00:00 2001 From: James Ritchie Date: Wed, 28 Jun 2023 16:14:38 +0100 Subject: [PATCH] Fleshed out the ngrok section some more --- .../helpContent/HelpContentText.tsx | 51 ++++++++++++++++--- 1 file changed, 43 insertions(+), 8 deletions(-) diff --git a/apps/webapp/app/components/helpContent/HelpContentText.tsx b/apps/webapp/app/components/helpContent/HelpContentText.tsx index fc75a1a62..c0f11593b 100644 --- a/apps/webapp/app/components/helpContent/HelpContentText.tsx +++ b/apps/webapp/app/components/helpContent/HelpContentText.tsx @@ -3,9 +3,11 @@ import { StepNumber } from "~/components/primitives/StepNumber"; import { IntegrationIcon } from "~/routes/_app.orgs.$organizationSlug.projects.$projectParam.integrations/route"; import { Callout } from "../primitives/Callout"; import integrationButton from "./integration-button.png"; +import ngrok from "./ngrok.png"; import { useDevEnvironment } from "~/hooks/useEnvironments"; import { ClipboardField } from "../primitives/ClipboardField"; import { Button } from "../primitives/Buttons"; +import { InlineCode } from "../code/InlineCode"; export function HowToSetupYourProject() { const devEnvironment = useDevEnvironment(); @@ -16,20 +18,53 @@ export function HowToSetupYourProject() { Ensure your Next.js app is running locally. - + - Run NGROK in a new terminal window. - - We recommend using NGROK in order to establish a tunnel between your - locally running Next.js app and the internet. Follow our{" "} + + There are a few ways to do this, but we recommend using{" "} - guide to setting up NGROK - {" "} - before moving onto the next step. + ngrok + + . It’s free and easy to use and required to create a tunnel, making + your local machine accessible to the internet. + + + + + + + You need to leave this running. + + + + + + + + + + + + + Use the forwarding URL that ngrok gave you for the{" "} + VERCEL_URL environment variable. + +