RobinCsl / openfisca-doc

User guide of OpenFisca

Home Page:https://openfisca.org/doc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OpenFisca Doc

OpenFisca is a versatile microsimulation free software. This repository contains the source code of its online documentation.

Installation

This documentation is built with Sphinx, a Python documentation generator. You will thus need to install a Python runtime to build it. The version to install is specified in the runtime.txt file.

In order to avoid conflicting dependencies with other projects on your local machine, it is recommended to install its dependencies in a virtual environment. To create a virtual environment, run:

python3 -m venv .venv
source .venv/bin/activate

To install dependencies, run:

make install

Build

To build the HTML documentation, run:

make html

The HTML output will be generated in the build/html directory.

Dev

To serve the documentation in dev mode, run:

make dev

The documentation will be served on http://127.0.0.1:8000

Test

To test the documentation, run:

make test

Fixing the doc

If the tests fail, here's what you can do:

  1. If the errors also concern OpenFisca-Core, please take a look at the README.

  2. If not, clone & install the documentation:

git clone https://github.com/openfisca/openfisca-doc
make install
  1. create a branch to correct the problems:
git checkout -b fix-doc
  1. Fix the offending problems.

You can test-drive your fixes by checking that each change works as expected:

make test
  1. Commit at each step, so you don't accidentally lose your progress:
git add -A && git commit -m "Fixed missing doctree"
  1. Once you're done, push your changes:
git push origin `git branch --show-current`
  1. Finally, open a pull request.

That's it! 🙌

About

User guide of OpenFisca

https://openfisca.org/doc

License:GNU Affero General Public License v3.0


Languages

Language:CSS 52.0%Language:Python 16.3%Language:HTML 10.3%Language:JavaScript 7.4%Language:Shell 7.3%Language:Makefile 6.7%