Run Antora to Generate Your Site
Assumptions:
-
You’ve installed the Antora CLI and a site generator pipeline.
-
You have your own playbook, or you’re using the Demo playbook.
-
Your playbook is configured to access at least one of your own documentation component repositories or Antora’s Demo docs components.
-
Your playbook is configured to use a custom UI bundle or Antora’s default UI bundle.
On this page, you’ll learn:
-
How to run Antora and generate a site.
-
Where files are cached.
-
How to update the cache.
-
How to preview a generated site locally.
Antora Demo
You don’t need to set up a docs component or create a UI to try out Antora. We’ve set up a playbook file, several content source repositories, and provided a default UI bundle. As soon as you’ve installed Antora, you can run Antora with the Demo materials and explore its capabilities. The instructions and examples on this page will show you how to operate Antora with the Demo materials.
Choose a Playbook
To produce a documentation site, Antora needs a playbook. But first, you’ll need to create or choose a directory where you’ll store the playbook and where the generated site files will be saved (assuming you use the default output configuration).
For the examples on this page, we’ll use the Demo materials.
-
Open a terminal and make a new directory named demo-site.
~ $ mkdir demo-site
-
Switch (
cd
) into the directory you just made.~ $ cd demo-site
-
Using your preferred text editor or IDE, create a new playbook file named site.yml and populate it with the contents of the following example. You can also download a sample playbook file from the Demo repository.
site.ymlsite: title: Antora Demo Site url: https://example.org/docs (1) start_page: component-b::index.adoc (2) content: sources: - url: https://gitlab.com/antora/demo/demo-component-a.git branches: master - url: https://gitlab.com/antora/demo/demo-component-b.git branches: [v2.0, v1.0] start_path: docs ui: bundle: url: https://gitlab.com/antora/antora-ui-default/-/jobs/artifacts/master/raw/build/ui-bundle.zip?job=bundle-stable snapshot: true
1 The 404 page and sitemap files are only generated if the site.url property is set. 2 The site.start_page property accepts the same page ID syntax that’s used in xrefs. -
Save the playbook as site.yml in the demo-site directory you made in Step 1.
Run Antora
-
To generate the site with the default Antora site generator, point the
antora
command at your playbook file. In the terminal, type:demo-site $ antora site.yml
First, Antora will clone the content repositories. The cloning progress of each repository is displayed in the terminal.
Repository cloning progress[clone] https://gitlab.com/antora/demo/demo-component-a.git [################] [clone] https://gitlab.com/antora/demo/demo-component-b.git [################]
Once cloning is complete, Antora converts the AsciiDoc pages to embeddable HTML, wraps the HTML in the UI page templates, then assembles the pages into a site under the destination folder, which defaults to build/site.
-
Antora has completed generation when the command prompt (
$
) reappears in the terminal.If something goes wrong during generation, you’ll see an error message in the terminal.
error: a message that summarizes what went wrong
If this message does not provide enough information to fix the problem, you can ask Antora for more context. To tell Antora to reveal the calls leading up to the error (i.e., the stacktrace), run the
antora
command again, this time with the--stacktrace
option:demo-site $ antora --stacktrace site.yml
Share this stacktrace when asking for help.
-
Switch into the site folder (
cd
) and list (ls
) its contents.demo-site $ cd build/site/
Inside the build/site folder, run:
site $ ls -1
You should see the following list of files and directories:
_ 404.html component-a component-b index.html sitemap-component-a.xml sitemap-component-b.xml sitemap.xml
The 404 page and sitemap files will be missing if the site.url
property is not defined in your playbook. The main sitemap file is actually a sitemap index. That file links to the sitemap for each component, which is where the URL for the individual pages can be found.This list includes the entry point of your documentation site, index.html.
-
On some operating systems, you can open the site directly from the command line by typing
open
, followed by the name of the HTML file.site $ open index.html
Or, you can navigate to an HTML page inside the destination folder in your browser. If you’ve been following along with the Demo materials, once you find the demo-site directory, navigate to the file build/site/index.html.
Cache
When Antora runs the first time, it will save resources it fetches over the network in a local cache. Antora caches two types of resources:
-
cloned git repositories
-
downloaded UI bundles
Antora stores these resources in the cache directory, which are further organized under the content and ui folders, respectively. The default cache directory varies by operating system. You can override the default cache location—listed here in order of precedence—using:
-
the --cache-dir CLI option,
-
the
ANTORA_CACHE_DIR
environment variable, or -
the runtime.cache_dir key in the playbook.
If you want Antora to update the cache on subsequent runs, pass the --fetch option to the Antora CLI or set the runtime.fetch
key to true in the playbook.
This switch will force Antora to run a fetch operation on each repository it previously cloned.
It will also force Antora to download a fresh copy of the UI bundle, if the URL is remote.
If you want to clear the cache altogether, locate the Antora cache directory on your system and delete it.
Private git repositories
Antora can authenticate with private repositories using HTTP Basic authentication over HTTPS. See Private repository authentication to learn more.
Local Site Preview
Since Antora generates static sites, you do not need to publish the site to a server in order to preview it.
To view the site, navigate to any HTML page inside the destination folder in your browser. If your using the Demo, look for the file /demo-site/build/site/index.html.
Optional: Run local server
A site generated by Antora is designed to be viewable without a web server. However, you may need to view your site through a web server to test certain features, such as indexified URLs or caching. You can use the serve package for this purpose.
Install the serve package globally using npm:
demo-site $ npm i -g serve@6.5.8
That puts a command by the same name on your PATH.
We specifically recommend using serve 6.5.8 since that’s the last version known to work reliably. |
Now launch the web server by pointing it at the location of the generated site.
In the terminal, type serve build/site
.
After executing the command, a the local address should be displayed in your terminal.
demo-site $ serve build/site
You should see the following output in your terminal.
┌─────────────────────────────────────────────────┐ │ │ │ Serving! │ │ │ │ - Local: http://localhost:5000 │ │ - On Your Network: http://192.168.1.9:5000 │ │ │ │ Copied local address to clipboard! │ │ │ └─────────────────────────────────────────────────┘
Paste the provided URL into the location bar of your browser to view your site through a local web server.
Press Ctrl+C to stop the server.
Publish to GitHub Pages
Antora is designed to create sites that run anywhere, whether it be a static web host or the local filesystem. However, some hosts offer “features” that interfere with Antora’s output. GitHub Pages is one of those hosts.
By default, GitHub Pages runs all files through another static site generator named Jekyll.
Since Antora already produces a ready-made site, there’s no need for this.
It’s also problematic since Jekyll has the nasty side effect of removing all files that begin with an underscore (_
).
Antora puts UI files in a directory named _
, which Jekyll subsequently erases.
As a result, no UI.
Antora also puts images in a folder named _images
inside each module, so no images either.
Fortunately, there’s a way to disable this “feature” of GitHub Pages. The solution is to add a .nojekyll file to the root of the published site. Simply create an empty .nojekyll file in the output directory before committing the files to GitHub Pages.
$ touch build/site/.nojekyll
The presence of the .nojekyll file at the root of the gh-pages
branch tells GitHub Pages not to run the published files through Jekyll.
The result is that your Antora-made site will work as expected (and will be available sooner).