OPEN TO WORK

Available for new opportunities! Let's build something amazing together.

Use environment variables in Hugo to show branch information

Development Documentation Hugo Vercel
post

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

For the new documentation website of Doctor, I wanted to do something similar like I did for Pimp Your Own Bike to show a message depending on the version/branch of the site I am using. For the doctor documentation, I wanted to use this method to show a beta message when using the beta site (beta.getdoctor.io).

{{< blockquote type="Related Article" text="#DevHack: Configuring domains for your branches on Vercel

The beta banner looks like this:

Show image Difference between production and beta documentation site
Difference between production and beta documentation site

My approach

I used an environment variable for the bike stickers site, which I configured on Vercel. In the code, I used the process.env.<variable> to check the branch during the build.

For doctor, I used Hugo as the static site generator. These environment variables work a bit differently but still easy to achieve.

To achieve the same in Hugo, you will need to create an environment variable prefixed with HUGO_ or defined differently when using version >=0.79.0 of Hugo.

I created a HUGO_GIT_COMMIT_REF variable for the’ doctor’ site, linked to VERCEL_GIT_COMMIT_REF, which passes me the branch name.

Show image Environment variable on Vercel used in Hugo
Environment variable on Vercel used in Hugo

In the theme for Hugo, I retrieve the environment variable and check if it is not equal to the main branch. When that happens, the build will generate the static site with the beta message included.

{{ $branch := getenv "HUGO_GIT_COMMIT_REF" }}
{{ if ne $branch "main" }}
<div class="banner-beta py-2">
You are currently checking the beta version of the documentation.
</div>
{{ end }}

Related articles

Report issues or make changes on GitHub

Found a typo or issue in this article? Visit the GitHub repository to make changes or submit a bug report.

Comments

Elio Struyf

Solutions Architect & Developer Expert

Loading...

Let's build together

Manage content in VS Code

Present from VS Code