🎈 Welcome to the Marketplace — Explore and discover the ecosystem around DatoCMS, and share your own work with the community!

Vercel

Trigger a build of your website on Vercel directly from the DatoCMS UI, and get a notification of the status of the build when it completes

Vercel is a cloud platform for static sites and Serverless Functions that enables developers to host JAMstack websites and web services that deploy instantly, scale automatically. Their free plan is perfectly compatible with DatoCMS and allows you to publish high-performant static websites.

Warning: this guide assumes you have a working static website project on your machine integrated with DatoCMS. If it's not the case, you can return to the previous sections of this documentation to see how to properly configure the DatoCMS administrative area and how to integrate DatoCMS with your favorite static website generator.

Step 1: create your Git repository

Create a new repository on GitHub. To avoid errors, do not initialize the new repository with README, license, or gitignore files. You can add these files after your project has been pushed to GitHub.

$ git init
$ git add .

Commit the files that you've staged in your local repository.

$ git commit -m 'First commit'

At the top of your GitHub repository's Quick Setup page, click the clipboard icon to copy the remote repository URL. In Terminal, add the URL for the remote repository where your local repository will be pushed.

$ git remote add origin YOUR_GITHUB_REPOSITORY_URL

Now, it's time to push the changes in your local repository to GitHub.

git push -u origin master

Now that your project is up and running on GitHub, let's connect it to Vercel.

Step 2: connect your repo to Vercel

Once you have signed up to Vercel, you can use the Git integrations with GitHub to deploy an existing project – then with a deployment for every push – by selecting a repository from your Git account.

Now you can link one of your Github repositories to Vercel, it will automatically create a new project for you and start a deployment right away.

Depending on your static generator the Build command and Output directory field need to be filled with different values. Vercel can usually deduce the framework you are using and pre-compile these fields for you.

Next step is to add your DatoCMS read-only token that will allow you to fetch your data from DatoCMS. At the moment there is no way to do that throught the Vercel interface, so you will have to install the Vercel CLI.

Adding environment variables requires two steps, defining the environment variable, using Now Secrets, then making it available to your projects' build step.

To create a new secret choose as a unique name -we suggest using your DatoCMS project ID- and copy the DatoCMS read-only token. You can find your API token in the Settings > API tokens section:

Then use these values to launch this command:

$ now secrets add <secret-name> <secret-value>

The second step is to provide your project with environment variables during the Build Step, to do that you should create a now.json file in which you define your DATO_API_TOKEN variable and assign the secret you just created:

{
"build": {
"env": {
"DATO_API_TOKEN": "@secret-name"
}
}
}

Vercel has different rules for using environment variables in development. Read the details in the docs

Step 3: connect Vercel to DatoCMS

There's only one last step needed: connecting DatoCMS to Vercel, so that everytime your editors press the Publish changes button in your administrative area, a new build process (thus a new publication of the final website) gets triggered.

Let's go through the process step-by-step. First, go to the Settings > Environments, click on the plus icon and select Vercel as build method. The Vercel authorization window should pop up:

On the new window that pops up, click on "Authorize" to allow DatoCMS to setup the auto-deploy meachanism and select the Vercel project that you want to link to DatoCMS, so that a number of bi-directional hooks will be configured. You can specify which branch of your Git repository you want to link with the deployment environment that you are creating.

When everything is done, confirm the integration pressing the Save Settings button.

Vercel
Trigger a build on Vercel, and get notified back with the status
Publisher
Author gravatarDatoCMS