Samza's documentation uses Jekyll to build a website out of markdown pages. Prerequisites:
- You need Ruby installed on your machine (run
ruby --version
to check) - Install Bundler by running
sudo gem install bundler
- To install Jekyll and its dependencies, change to the
docs
directory and runbundle 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
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.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.
To auto-generate the latest Javadocs, run:
bin/generate-javadocs.sh
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/samza/site/ locally, copy the site into the directory, and commit the changes.