Breakthrough-Energy / docs

Documentation
https://breakthrough-energy.github.io/docs/
Creative Commons Attribution 4.0 International
13 stars 14 forks source link

docs

Documentation

Requirements

This repository combines documentation from PreREISE, PowerSimData, PostREISE, and REISE.jl so in order to build locally, clone those first - into the same directory as this repo such that your file structure looks like this:

root directory:

    .
    ├── docs
    ├── PostREISE
    ├── PowerSimData
    ├── PreREISE
    └── REISE.jl

Building Locally

The documentation can be built using either of the following methods. For most cases, docker is the recommended option since it works on any OS, however some users may find tox is faster. The output will be in the build/ directory, and you can browse from the homepage located at build/html/index.html.

Docker

docker-compose up --build

Tox

Additional requirements:

Now, you can create all the docs by just running tox or create docs for a specific package: tox -e [package]. The package argument should be one of (prereise,powersimdata,postreise) which can be seen by running tox -l to list possibilities. Lastly, if you need to clear existing build output, you can do so by running make clean.