action.skip

Gatsby Vercel Deployment

This article will walk you through the process of deploying your Gatsby project to Vercel. We use one of our starters as an example, so you might want to check them out, check the links below.

Prerequisites

  1. Flotiq account
  2. Vercel account
  3. Website, sourcing content from Flotiq.

Signing in to Vercel

If you do not have a Vercel account, the easiest way to create one and use this tutorial is to use GitHub on the Vercel sign-up page. Vercel will ask you to authorize with your GitHub account. If you need to request access to one or more repositories, you can click request access here or later when creating an instance.

Go to the Vercel site and click the Sign Up button on the top right of the site.

You will be asked about the Plan type and your name.

On the next page, connect your Git provider. In this example, we will be using GitHub:

Log in to your GitHub account and authorize Vercel to access your GitHub account information:

Deployment

Once you’ve configured your account, you should be taken to your project overview site. If not, go to the Vercel’s main site.

Then click Import Project to use a GitHub repository to create a project.

Then select the repository that contains your project.

After selecting the repository, you can specify a name for your site, root directory, build command, and environmental variables.\nAs our project is in the repository’s root, the root directory remains empty.

In this example, we need to specify one environment variable: GATSBY_FLOTIQ_API_KEY.

If you need to add more, just specify them and click Add.

For more information about environment variables, check this section.

If everything looks fine, click the Deploy button and wait for Vercel to deploy your application.

After a while, you should see a notification, that your deployment succeeded.

Congratulations, you’ve successfully deployed your Flotiq-based site on Vercel!

Setting up Environment Variables

An environment variable references a value that can affect how running processes will behave on a computer, for example, in staging and production environments. You must save environment variables in Vercel to authorize your instance to pull source data from Flotiq.

The essential environment variable needed for every Gatsby project is GATSBY_FLOTIQ_API_KEY. In some cases, you will provide additional environmental variables for your application to work.

For example, if you're using the Gatsby and Snipcart starter you will also provide the Snipcart API key. The project Readme always describes the needed variables.

To obtain the Flotiq API key - go to your Flotiq account and click your profile icon in the sidebar and go to API keys:

You can either select the application-wide read-only key:

Or, as a safer option, create a scoped read-only API key that will only be used for the Vercel build. Read more about Flotiq API access.

Copy the Read-Only key and paste it into Vercel settings as GATSBY_FLOTIQ_API_KEY.

Info

Flotiq doesn't enforce any particular way of selecting drafts or non-public versions of your pages.

The Read-Only key you copied will give you access to all your content. If you'd like to set up draft and public versions of your pages, you can do so by adding an extra field to your content types and querying for it in your GraphQL queries.