Skip to content

Hugo

Hugo is a tool for generating static sites, written in Go. It is incredibly fast and has great high-level, flexible primitives for managing your content using different content formats.

In this guide, you will create a new Hugo application and deploy it using Cloudflare Pages. You will use the hugo CLI to create a new Hugo site.

Before you continue

All of the framework guides assume you already have a fundamental understanding of Git. If you are new to Git, refer to this summarized Git handbook on how to set up Git on your local machine.

If you clone with SSH, you must generate SSH keys on each computer you use to push or pull from GitHub.

Refer to the GitHub documentation and Git documentation for more information.

Go to Deploy with Cloudflare Pages if you already have a Hugo site hosted with your Git provider.

Install Hugo

Install the Hugo CLI, using the specific instructions for your operating system.

If you use the package manager Homebrew, run the brew install command in your terminal to install Hugo:

Terminal window
brew install hugo

Manual installation

The Hugo GitHub repository contains pre-built versions of the Hugo command-line tool for various operating systems, which can be found on the Releases page.

For more instruction on installing these releases, refer to Hugo’s documentation.

Create a new project

With Hugo installed, refer to Hugo’s Quick Start to create your project or create a new project by running the hugo new command in your terminal:

Terminal window
hugo new site my-hugo-site

Hugo sites use themes to customize the look and feel of the statically built HTML site. There are a number of themes available at themes.gohugo.io — for now, use the Ananake theme by running the following commands in your terminal:

Terminal window
cd my-hugo-site
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
echo "theme = 'ananke'" >> hugo.toml

Create a post

Create a new post to give your Hugo site some initial content. Run the hugo new command in your terminal to generate a new post:

Terminal window
hugo new content posts/hello-world.md

Inside of hello-world.md, add some initial content to create your post. Remove the draft line in your post’s frontmatter when you are ready to publish the post. Any posts with draft: true set will be skipped by Hugo’s build process.

Create a GitHub repository

Create a new GitHub repository by visiting repo.new. After creating a new repository, go to your newly created project directory to prepare and push your local application to GitHub by running the following commands in your terminal:

Terminal window
git remote add origin https://github.com/<your-gh-username>/<repository-name>
git branch -M main
git push -u origin main

Deploy with Cloudflare Pages

To deploy your site to Pages:

  1. Log in to the Cloudflare dashboard and select your account.
  2. In Account Home, select Workers & Pages > Create application > Pages > Connect to Git.
  3. Select the new GitHub repository that you created and, in the Set up builds and deployments section, provide the following information:
Configuration option Value
Production branch main
Build command hugo
Build directory public

After completing deployment configuration, select the Save and Deploy. You should see Cloudflare Pages installing hugo and your project dependencies, and building your site, before deploying it.

After deploying your site, you will receive a unique subdomain for your project on *.pages.dev. Every time you commit new code to your Hugo site, Cloudflare Pages will automatically rebuild your project and deploy it. You will also get access to preview deployments on new pull requests, so you can preview how changes look to your site before deploying them to production.

Use a specific or newer Hugo version

To use a specific or newer version of Hugo, create the HUGO_VERSION environment variable in your Pages project > Settings > Environment variables. Set the value as the Hugo version you want to specify (v0.112.0 or later is recommended for newer versions).

For example, HUGO_VERSION: 0.115.4.

Learn more

By completing this guide, you have successfully deployed your Hugo site to Cloudflare Pages. To get started with other frameworks, refer to the list of Framework guides.