tree: fd6d21b00b58e106ad7501b02b99b060c114f4d8 [path history] [tgz]
  1. archetypes/
  2. assets/
  3. content/
  4. data/
  5. layouts/
  6. scripts/
  7. static/
  8. .gitignore
  9. build_site.sh
  10. config.yaml
  11. gulpfile.js
  12. Makefile
  13. package.json
  14. publish_site.sh
  15. README.md
  16. yarn.lock
website/README.md

Heron Documentation

Heron's documentation was primarily built using the following components:

Documentation Setup

Running the Heron documentation locally requires that you have the following installed:

macOS setup

To get set up on macOS:

$ cd website
$ make setup
$ make build-static-assets

This will install Gulp and all of the necessary Gulp plugins and build the static assets for the site, as well as some necessary Python libraries.

Other Operating Systems Setup

Although the documentation is currently set up to be built and run on OS X, it's also possible to do so on other systems. In addition to Node.js and npm you will also need to install Hugo. Once those are installed:

  1. Navigate to the website folder
  2. Run npm install
  3. Run make site

Building the Docs Locally

To build the docs locally:

$ make site

This will generate a full build of the docs in the public folder, a full build of the static assets in the static folder, and check all links. If broken links are found, see linkchecker-errors.csv (you can safely leave this file in your directory, as it is ignored by Git).

Running the Site Locally

To serve the site locally:

$ make serve

This will run the docs locally on localhost:1313. Navigate to localhost:1313/heron to see the served docs. Or open the browser from the command line:

$ open http://localhost:1313/incubator-heron/

You can edit .md files and they will be automatically updated in your browser.

Working on Static Assets

If you‘d like to work on the site’s static assets (Sass/CSS, JavaScript, etc.), you can run make develop-static-assets. This will build all of the static assets in the assets folder, store the build artifacts in the static folder, and then watch the assets folder for changes, rebuilding when changes are made.

Checking Links

To verify that the links in the docs are all valid, make sure wget is installed and run make linkchecker, which will produce a report of broken links. However, no URL of parent webpages that contain broken links will be reported, but one can use grep command to find those parent webpages.

Publishing the Site

The content on the twitter.github.io/heron website is what is committed on the gh-pages branch of the Heron repo. To simplify publishing docs generated from master onto the gh-pages branch, the output directory of the site build process (i.e. website/public) is a submodule that points to the gh-pages branch of the heron repo.

A one-time setup is required to initialize the website/public submodule:

$ rm -rf website/public
$ git submodule update --init
$ cd website/public
$ git checkout gh-pages
$ git remote rename origin upstream

With the submodule in place, you will notice that when you cd into website/public and run git status or git remote -v, it appears as another heron repo based off of the gh-pages branch.

$ git status
On branch master
Your branch is up-to-date with 'upstream/master'.
$ cd website/public
$ git status
On branch gh-pages
Your branch is up-to-date with 'upstream/gh-pages'.

To publish the site docs:

  1. Make the site as described in the above section. Verify all links are valid.
  2. Change to the website/public directory, commit everything to the gh-pages branch and push to the upstream repo. You can also push to the gh-pages branch of your own fork and verify the site at http://[username].github.io/heron.