tree: edece6771478282d8be2f766ba2166425d1d2fd3 [path history] [tgz]
  1. _docs/
  2. _layouts/
  3. archive/
  4. community/
  5. contribute/
  6. css/
  7. fonts/
  8. img/
  9. js/
  10. learn/
  11. less/
  12. startup/
  13. _config.yml
  14. Gemfile
  15. Gemfile.lock
  16. index.md
  17. Makefile
  18. README.md
  19. sitemap.xml
docs/README.md

Setup

Samza's documentation uses Jekyll to build a website out of markdown pages. Prerequisites:

  1. You need Ruby installed on your machine (run ruby --version to check)
  2. Install Bundler by running sudo gem install bundler
  3. To install Jekyll and its dependencies, change to the docs directory and run bundle install

To serve the website on localhost:4000:

bundle exec jekyll serve --watch --baseurl

To compile the website in the _site directory, execute:

bundle exec jekyll build

To test the site, run:

bundle exec jekyll serve --watch --baseurl

Versioning

If you‘re working with versioned content (anything in the learn or img directories), you’ll also need to run a script that generates the appropriate directories:

  _docs/local-site-test.sh

The local-site-test.sh script must be run every time a change is made to versioned content locally in order to trigger a refresh with Jekyll.

Keep in mind that versioned content in older versions links to samza.incubator.apache.org, not the localhost:4000. This is because they are not updated by your branch and are using the values in SVN instead.

To add a new version, change the version number in _config.yml. All links in pages should use {{site.version}}, not hard-coded version number.

Javadocs

To auto-generate the latest Javadocs, run:

bin/generate-javadocs.sh

Release

To build and publish the website to Samza's Apache SVN repository, run:

bin/publish-site.sh "updating welcome page" criccomini

This command will re-build the Javadocs and website, checkout https://svn.apache.org/repos/asf/incubator/samza/site/ locally, copy the site into the directory, and commit the changes.