Skip to content

simonLeary42/ood-documentation

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OOD Documentation

Go to https://osc.github.io/ood-documentation/master/

Or select your version:

Development

There are two ways to build the documentation.

  1. Use the Docker image that is used to build them in production using Travis.
  2. Use pipenv to install local dependencies. pipenv has become the recommended package to use by python.org for dependency management

Docker

Currently all builds are generated using the docker-sphinx Docker image. They are built using the following command from the root of this repo:

docker run --rm -i -t -v "${PWD}:/doc" -u "$(id -u):$(id -g)" ohiosupercomputer/docker-sphinx make html

Or use the rake task added:

rake docker:build

pipenv

If you don't want to use Docker, you can also use pipenv.

  1. Ensure plantuml and graphviz are installed:

    # on OS X
    brew install plantuml
    brew install graphviz
  2. Install pipenv and use it to install dependencies in same directory:

    pip install -g pipenv
    
    # then in the documentation root directory:
    WORKDIR=/doc PIPENV_VENV_IN_PROJECT=1 pipenv install
    
    # or using handy rake task:
    rake pipenv:install

When building the docs, run this command:

WORKDIR=/doc PIPENV_VENV_IN_PROJECT=1 pipenv run make html

or use the rake task:

rake pipenv:build

# or

rake build

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/OSC/ood-documentation.

License

The gem is available as open source under the terms of the MIT License.

About

Documentation for Open OnDemand generated using Sphinx

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 38.3%
  • Batchfile 24.9%
  • Makefile 24.6%
  • HTML 4.0%
  • Ruby 3.0%
  • CSS 2.7%
  • Shell 2.5%