Skip to content

Latest commit

 

History

History
 
 

docs

Deis Documentation

Source files for http://docs.deis.io, the documentation home of Deis.

Documentation in this tree consists of plain text files named with the .rst suffix. These can be read in any text viewer, or processed by the Sphinx system to create an HTML version.

Please add any issues you find with this documentation to the Deis project.

Usage

  1. Install Sphinx and other requirements:

    $ virtualenv venv -q --prompt='(docs)' && . venv/bin/activate
    (docs)$ pip install -r docs_requirements.txt

    See comments at the top of the docs_requirements.txt file if you have problems with this step on Mac OS X Mavericks.

  2. Build the documentation and host it on a local web server:

    (docs)$ make server
    sphinx-build -b dirhtml -d _build/doctrees   . _build/dirhtml
    Making output directory...
    Running Sphinx v1.3.0
    ...
    Build finished. The HTML pages are in _build/dirhtml.
    Serving HTTP on 0.0.0.0 port 8000 ...
  3. Open a web browser to http://127.0.0.1:8000/ and learn about Deis, a lightweight, flexible and powerful open source PaaS.

  4. Fork this repository and send your changes or additions to Deis' documentation as GitHub Pull Requests. Thank you!