You need clone the start-to-end repository from GitHub:
git clone https://github.com/chuckie82/start-to-end.git
The index.rst is the master ReST for your project.
You may already have sphinx sphinx installed -- you can check by doing:
python -c 'import sphinx'
If that fails grab the latest version of and install it with:
> sudo easy_install -U Sphinx
Let's see if we can build our html:
make html
If you now point your browser to :file:`_build/html/index.html`, you should see the site.
To update the document on the web, just push your changes:
git add *.rst git commit -m "Update all documents" git push -u origin master
More instructions to come...