LogoLogo
Back to studio
  • 🧠Core Concepts
    • Introduction to Formsort
    • Formsort quickstart guides
      • Add content and collect answers
      • Capture demographic data
      • Add informational content
      • Template your variables
      • Add conditional logic
      • Using conditional logic with Calculated and API variables
      • Add a scheduling option
      • End the flow
      • Review your variable schema
      • Set up integrations
    • How data works in Formsort
      • Responder UUIDs
    • Understanding flows
    • Versioning in Formsort (Deploying)
      • Variant revisions
      • Managing revisions
  • ✨Creating Flows
    • Building a new flow
      • Groups
      • Steps
      • Copy-pasting form content
  • Adding questions and content
    • Questions
      • Select
      • Text
      • Address
      • Comparison
      • Confirmation
      • Date
      • Date & time
      • Email address
      • File upload
      • Grid choice
      • Iframe
      • Image upload
      • Number
      • Payment
      • Phone number
      • Postal code
      • Question group
      • Region
      • Signature
      • SSN
      • Yes/No
    • Content
      • Statement
      • Image
      • Next button
      • Video
      • Divider
      • Map
  • Controlling the flow with conditions and logic
    • Advanced logic
  • Variable templating
  • Redirects and endings
  • Field validation
  • Flow and variant management
  • Content library
  • 🧬JSON Form Definition
  • JSON schemas
  • Validating flow schemas
  • Events subscriptions
  • Flow content data format
  • 🎨Styling
    • Customizing appearance
      • Content area & form layout
      • Buttons
      • Typography
      • UI states
      • Color and dimension variables
      • Question containers
      • Inputs and dropdowns
      • Checkmarks
      • Tables
      • Sliders
      • Divider lines
      • Progress bar
      • Comparison cards
      • Animations and transitions
  • CSS & Advanced Styling
    • Custom CSS overrides
    • Step styling
    • CSS reference
  • 🔁Form Behavior Settings
    • Variant settings
      • Form behavior for returning users
      • Group ranking API
    • Navigation sidebar
  • ⚙️Response Data Collection & Management
    • Schema (variables)
      • Variables from questions
      • Externally provided variables
      • Calculated variables
      • API lookups
      • System Library variables
      • Orphaned variables
  • Saving & retrieving responses
  • Importing Data
    • URL parameters
    • POST body
    • Embed query parameters
  • 📊Analytics and Attribution
    • Built-in analytics
    • Split testing
  • 🚀Publishing and Deployment
    • Live preview overview
    • Environments
      • Loading different environments
    • Embedding
      • Web-embed API
        • React-embed
      • Adding authentication
      • Embedding forms in iOS and Android
      • Setting up a dev environment
    • Pre-deployment checklist
  • 📁Workspace Management
    • Accounts
      • Roles and permissions
    • Custom domains
    • Workspace domain detection
  • 🛠️Formsort Admin API
    • Admin API
  • 🔌Integrations
    • Form answers and events
      • Analytics events
      • Signed requests
      • Event payload shape
      • Submission frequencies
      • Runtime error reporting
    • Integration reference
      • Amplitude
        • Amplitude cross domain tracking
      • BigQuery
      • FullStory
      • Google Analytics
        • Updating from Universal Analytics to GA4
      • Google Cloud Storage
      • Google Sheets
      • Google Tag Manager (GTM)
        • JavaScript triggered by flow events
      • Hubspot
      • Jornaya
      • Optimizely
      • PostgreSQL
      • Redshift
      • Rudderstack
      • S3
      • Salesforce
      • Segment
        • Segment Setup
        • Segment cross domain tracking
      • Stripe
      • TrustedForm
      • Webhooks
        • Zapier
Powered by GitBook
On this page
  • Getting Setup
  • 1. Create your environment
  • 2. Configure your embed
  • 3. Install ngrok
  • 4. Whitelist the embedding domain
  • 5. Expose your project with ngrok
  • ...And finally

Was this helpful?

  1. Publishing and Deployment
  2. Embedding

Setting up a dev environment

Troubleshoot your embed before going live

PreviousEmbedding forms in iOS and AndroidNextPre-deployment checklist

Last updated 23 hours ago

Was this helpful?

It's worth noting that the plan is the only one that allows access to multiple environments (staging, dev, etc.). If you are on the Free or Pro plans, this guide will still be helpful, but you will have to test with your Production environments. If you're interested in upgrading to Enterprise, chat us on Intercom!

It's not uncommon to want to host your form on your own application, and using our capabilities will allow you to do this. But it's also important to have a safe environment to troubleshoot your embed page, or even experiment with different configurations without affecting the production flow.

Your first instinct (probably) is to set up a dev environment by serving up your embedding page on localhost and testing there, but there are two caveats with Formsort flows - any domain your flow is embedded into needs to be in your studio, and localhost cannot be whitelisted.

Whitelisting is required to prevent unknown domains from hosting your flow, with the added benefit that the parent page will have access to the user’s submission data.

If your embedding domain is not whitelisted in Formsort, the flow will not display on the page, and you’ll likely see a CSP: "frame-ancestor" error.

We suggest using nrgok because the basic service is free and is quick and easy to install, but feel free to use any proxy you're familiar with.

This guide will show you how to get your dev environment set up and whitelist the required subdomain.

Getting Setup

What you’ll need:

    • Owner, Admin, and Engineer all have the requisite permissions

  • A place to send test data

  • The embed code for your flow

1. Create your environment

In order to receive test data at your integration targets, you’ll need to create integrations specific to the test environment.

  • Create a “dev” environment in the Integrations menu of the flow you are going to be working in.

Making a "dev" environment is optional. At your own discretion, you can opt for the staging environment instead. However, we suggest creating a third environment so that any developers have their own space and integration set to test with.

  • Setup your integration target(s) in this new dev environment. Be sure to save your changes!

2. Configure your embed

Now, you’ll need to write the code instruction to load your flow into the new developer environment.

  • Have the embed configuration pass in formsortEnv=dev as a query parameter.

The syntax for the query parameter here requires an array of string values. Below is the code for an example functional component in React:

This will allow the variant to load in the dev environment.

3. Install ngrok

Steps 2 and 3 in the ngrok install guide are sufficient to get the client installed.

4. Whitelist the embedding domain

Now we need to whitelist ngrok in your Formsort studio. Head to Setup -> Security in the left toolbar of your Studio view.

If you’re using the freemium version of ngrok, the easiest thing to do here would be to whitelist using a wildcard subdomain: *.ngrok.io. This is because ngrok will serve you a different subdomain every time you run the service.

If you already have a dedicated ngrok/proxy address, whitelist that instead.

Make sure to save after adding the domain!

5. Expose your project with ngrok

Once your project is ready to get online (any project dependencies have been configured and you are ready to test), serve it up on your local web service (localhost).

You can close the window might be opened in your web browser.

Now, in a separate terminal, have ngrok create a secure tunnel to make localhost accessible via the internet using the following command: ngrok http https://localhost:<your_port_here>. <your_port_here> is the port number your local web service is using.

Open the session in your browser using the forwarding address that is generated in the ngrok terminal.

Once you've navigated to the address in a browser, the tag at the top of the page should match the environment variable that you’ve passed in as the URL parameter in the embed code.

In our case here, it’s “dev”.

The forwarding address is publicly accessible on the internet, so anyone that has it will be able to test this flow. This will only stay active for as long as you have the ngrok service running in your terminal.

...And finally

That's it! Once you see the above page, your flow is live at the Forwarding address provided and you can start troubleshooting your page in your dev environment.

Happy coding!

The process here is to use a proxy, like , which will make your localhost environment available on the internet by providing a forwarding address. This address can be whitelisted in Formsort.

The correct for your Formsort studio account

see our for getting set up here

If you're planning on using ngrok specifically, a free

Head into a variant you want to use and it to your "dev" environment.

See our for more information about code requirements and syntax.

If you don’t already have ngrok available, install it in the root project folder. You can see installation instructions .

🚀
ngrok
roles and permissions
embed-docs
ngrok account
deploy
embed docs
on their official site
Enterprise
web-embed
whitelisted
Trying to frame in an unlisted domain
Add "dev" in the "Edits environment" menu
Setting up a webhook target for the dev environment
Select your dev environment and then ship that sucker
The clientLabel and flowLabel props are also required, in any case
Whitelisting ngrok with the wildcard subdomain
npm start to get the React project onto the localhost port 3000
Open the ngrok.io Forwarding address in your browser
The "dev" environment flag