EU applications closed, NA applications open
1 file changed
tree: 3d1456684d812091df7d513b7fad22f3e519de93
  1. archetypes/
  2. layouts/
  3. source/
  4. static/
  5. .asf.yaml
  6. .gitignore
  7. config.toml
  8. Jenkinsfile
  9. README.md
README.md

Apache Travel Assistance Committee website

This is the source code for the website of the Apache Travel Assistance Committee website

How to publish the website

Changes to the main branch of this repository trigger the tac-website Jenkins Job which generates the website content and commits it to the asf-site branch of this repository.

The ASF's gitpubsub mechanism then synchronizes that content to https://tac.apache.org/, usually within a few seconds. More details about the publication process can be found in the ASF Documentation about Project sites. If for some reason this process fails, you can use the self-service page from ASF Infra to trigger a resync of the git repo.

Powered by Hugo!

The website uses Hugo as static website generator, see their website for more information and for how to install and run it if needed.

Other Apache websites that are built with Hugo should be listed by this GitHub query for the ‘hugo’ tag.

How to test the website and changes on your own computer

To generate the static website, execute hugo to generate the website under target/content

During development, it may be useful to run an incremental build. For this to work, execute hugo server -D to continuously (re)generate and serve the website on localhost:1313. (-D means include draft pages)