Alert This post is over a year old, some of this information may be out of date.

#DevHack: Configuring domains for your branches on Vercel

To prepare my new online store’s release for selling personalizable bike stickers called: Pimp Your Own Bike. I wanted to make sure that I could test out my website before merging it to the main branch. Using a predefined custom domain would be the easiest way.

Highlighting my environments
Highlighting my environments

On Azure, I would typically use slots on the web app. Each slot defines the environment you are targeting, for instance, development. For PYOB I wanted to use Vercel. I love the simplicity of their service and UI. All of it works so nicely, and it comes with all of the functionalities I need.

Environments and their variables

Vercel comes with three types of environments:

  • Production: This refers to the branch you use for your production environment. For instance, main.
  • Preview: This is your staging environment and refers to any other branch than the main branch.
  • Development: This is intended for local development and allows each team member to easily copy the development variables to their machine.

In my scenario, that means that my main branch links to production. My dev and staging environments relate to the preview environment and their environment variables.

My domains and their branches
My domains and their branches

On Azure, it would mean that for each branch, I configure my environment variables separately. The documentation points out that you best prefix the variables when you want to use multiple staging environments.

Info

Staging environment variables

To be honest, this is not optimal when you have to maintain various branches. For most sites, this will be more than sufficient.

System environment variables

Within the recently released UI improvements, the system environment variables are more comfortable to configure. Before, you had to configure each of the variables you wanted to use manually. Now you can automatically expose them all, but not only that, but you can also choose them from the dropdown list. That way, you do not have to go to the documentation.

Info

System environment variables

Adding environment variables
Adding environment variables

Configuring the custom URLs for each branch

When it comes to creating a unique URL for each branch, this is super simple in the Vercel UI. All you have to do is go to your project settings, and under domains, you can add a new domain. The domain can also be a subdomain like dev.pimpyourownbike.com (when your domain is already configured).

Adding dev sub-domain
Adding dev sub-domain

Once the domain is available, you can modify it to specify the Git branch.

Specify the git branch for the domain
Specify the git branch for the domain
Info

Once you do a new push to your branch, it will automatically start the CI/CD for that branch.

How I used the environment variables

To easily spot which environment I am working/testing, I used the VERCEL_GIT_COMMIT_REF. This variable corresponds to the branch name and is used to show a different banner on each environment.

System Environment Variable
System Environment Variable

In code, it looks as follows:

1
2
3
4
5
6
7
{
  (process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_REF !== "main") && (
    <Alert key="dev-alert" bgClass="bg-purple-700" txtClass="text-white">
      <b className="capitalize">{process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_REF}!</b>
    </Alert>
  )
}

Have fun configuring your environments

Comments

Back to top