This is the source for the Storm website and documentation. It is statically generated using jekyll.
You have to generate javadoc on project root before generating document site.
mvn clean install -Pdist # you may skip tests with `-DskipTests=true` to save time
You need to create distribution package with gpg certificate. Please refer here.
First install jekyll (assuming you have ruby installed):
gem install jekyll
Generate the site, and start a server locally:
cd docs
jekyll serve -w
The -w
option tells jekyll to watch for changes to files and regenerate the site automatically when any content changes.
Point your browser to http://localhost:4000
By default, jekyll will generate the site in a _site
directory.
In order to publish the website, you must have committer access to Storm's subversion repository.
The Storm website is published using Apache svnpubsub. Any changes committed to subversion will be automatically published to storm.apache.org.
To publish changes, tell jekyll to generate the site in the publish
directory of subversion, then commit the changes:
cd docs
jekyll build -d /path/to/svn/repo/publish
cd /path/to/svn/repo/publish
svn commit