How to test locally
1 file changed
tree: 59237b2193eb4e718ffc780a3b4996b9218387e5
  1. content/
  2. data/
  3. docs/
  4. theme/
  5. .asf.yaml
  6. .gitignore
  7. asfdata.yaml
  8. pelicanconf.yaml
  9. README.md
  10. requirements.txt
README.md

Apache Foundation Website (www.apache.org)

We are now in production

This repository provides the source for the main website of The Apache Software Foundation.

Linking to Markdown (.md) sources

Markdown (.md) files appear in the preview pane of the editor approximately as they will appear in the generated website. This is convenient for reviewing changes, but means that linking to the source requires a bit more work compared with other files. If you want to create a permalink or raise an issue that relates to a particular Markdown source line, proceed as follows:

Documentation

Read the Getting started guide and the pages it links to.

Notes

The website is built with Pelican.

The infrastructure-pelican Dockerfile can be used to build the website locally, for testing.

Continuous Integration / Continuous Deployment (CI/CD) is via the .asf.yaml file mechanism which runs Buildbot.

The svn history was not migrated and remains available.

Foundation records, including minutes of Board meetings, remain in svn, except for the index page.

Local development and testing

If you wish to update and test the site locally, there is a Docker build script you can use. You will also need Git, and familiarity with working in a command-line shell. [The following instructions should work for Unix and macOS, but will need adjustment for Windows.]

  • install Docker
  • change to a suitable directory
  • get the Infra Pelican setup: git clone https://github.com/apache/infrastructure-pelican
  • change to the checkout: cd infrastructure-pelican
  • build the container: docker build -t pelican-asf. This will take a while the first time.
  • change to a suitable directory
  • get the ASF website source: git clone https://github.com/apache/www-site
  • change to the website checkout: cd www-site
  • Create a dummy authorisation file: touch .authtokens
  • Start the continuous builder: docker run -it -p8000:8000 -v $PWD:/site pelican-asf
  • this will generate a lot of output, but will eventually stop.
  • browse to http://localhost:8000/

If you make changes to the local copy of www-site, these will be automatically built, and should appear in the browser when the page is refreshed.