This repo holds all the content (and other bits) for the most-excellent Riak wiki, located at wiki.basho.com.
We are using Gollum and Gollum-Site to generate the wiki. Gollum is a great piece of open source software released by the GitHub team that lets you maintain and build wikis from the contents of a Git repo.
gollum-site
generates html from pages written in any format supported by Gollum (ASCIIDoc, Creole, Markdown, Textile, etc.).
Part of the reason we switched to Gollum and GitHub for the Riak Wiki was to make it easier for people to contribute. So, treat this repo much like you would a code repo: If you have a change (be a minor edit or an entirely new page full of Python client code snippets), simply:
-
Create a new Branch:
git checkout -b <branch-name>
-
Add your changes
-
Run the specs and fix any formatting issues
rake spec
-
Commit changes to your branch
If it's a small or obvious change, we're likely to merge it right away. If we have questions, we'll communicate with you using the pull request's issue page.
The Gollum README provides a great introduction to using the wiki system.
Anyone can contribute to the Riak Wiki via the process outlined above. That said, there is a group of non-Basho developers who have commit access to this repo and can edit it directly. We call them Community Wiki Committers. See this page if you're interested in becoming one.
## Building the Wiki LocallyIf you want to build and view the Riak Wiki locally, here is what you need to do:
-
Clone this repo:
git clone git://github.com/basho/riak_wiki.git
-
Ensure that you have Bundler installed:
gem install bundler
-
Install all pre-requisite gems:
bundle install
-
Generate the site and start a local server (This will take a minute. Don't fret.)
gollum-site generate # Will generate the files gollum-site serve # Will start the gollum-site server
-
Navigate to http://localhost:8000/ (Default) to access a fully-functional copy of the Riak Wiki.
-
Send Email to [email protected]
-
Use the Riak Mailing List
-
Create a new Issue