What is a Site build?

Last modified: October 8th, 2025

A “build” is when CloudCannon converts all your Site files into a single, functional website. By building your Site in CloudCannon, you can make the most of features such as:

Building is an optional step. If your Site is dynamic, or you only want to use CloudCannon as a CMS for your Git repository, you don’t need to build. For more information, please read our guide on using CloudCannon in Headless Mode.

What happens during a build?#

CloudCannon uses a CI/CD (Continuous Integration/Continuous Delivery) system. Every time you trigger a build of your Site, CloudCannon will:

  1. Download your files onto our server.
  2. Run your selected install commands (e.g., npm install, bundle install).
  3. Run your selected build commands (e.g., npm run build).
  4. Index your output files.
  5. Upload your output files to CloudCannon to generate previews (i.e., the test domain, visual editor, and in-app screenshots) and deliver them to your live domain (if you are hosting with CloudCannon).

Additionally, you can configure build hooks to run extra commands during your Site build. Build hooks are useful for downloading external data, running test commands, and more.

CloudCannon runs your build commands using bash in an isolated environment powered by Ubuntu. In addition to bash, CloudCannon includes several other programs and libraries your Site may need, such as Deno, Go, Node.js, and Ruby. You can pin a version of these dependencies to maintain consistency between builds.

For more information about CloudCannon's build environment, please contact our support team.

Starting a build#

Permissions required

Members of the Owners, Developers, or Technical Editors Default Permission Groups, or Custom Permission Groups with the site:build (or, more specifically, site:build:trigger) permission, can trigger a Site build.

Setting up your first Site build requires some configuration. For more information, please read our documentation on configuring your first build. Once you have completed your first build you can trigger subsequent builds at any time.

You can start a build by:

This feature is available through a private Beta.

The CloudCannon API is currently available through a private Beta. Want to chat about whether this feature is right for you? Our support team is always happy to hear from you.

You can prevent a Site from building by locking builds.

Reading your build output logs#

CloudCannon produces a log every time it runs a build. You can use your build log to follow CloudCannon's build process and diagnose your build if CloudCannon runs into an error.

While CloudCannon is building your Site, you can read the build output files by clicking on the View Output button in the notification at the bottom right of the app. This will open the build terminal.

A screenshot of the Content Editor with the Building notification in the bottom right shows a button labeled View Output.
A screenshot of the Content Editor with the Build Terminal modal open shows the progress of the current Site build.

The build terminal has three tools: the Copy Output button and the checkboxes for Scroll to bottom and Show timing. The Copy Output button lets you copy your build log as plain text. The status of the Scroll to bottom and Show timing checkboxes will persist between builds. These checkboxes control whether the terminal displays the beginning or the end of the log by default and whether event times are logged, respectively.

You can view all your build logs on the Builds tab of your Site Dashboard.

A screenshot of the Site Dashboard Builds tab shows that the first build of a Site is running.

Caching between builds#

To improve the speed of your builds, CloudCannon attempts to send consecutive builds from a single Site to the same server. You can configure file caching so that CloudCannon only uses server time for files updated between builds. This allows you to skip expensive and repetitive operations.

Caching is great for minimizing the effect of build steps that are typically slow, such as image optimization, installing dependencies, and external data fetching. For more information, please read our documentation on configuring caching between builds.

Open in a new tab