Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evrardjp/doctest
https://github.com/evrardjp/doctest
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/evrardjp/doctest
- Owner: evrardjp
- Created: 2021-04-19T11:40:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-04-25T15:54:18.000Z (over 3 years ago)
- Last Synced: 2023-03-24T23:40:35.463Z (over 1 year ago)
- Size: 283 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# How to contribute to our documentation
We welcome all changes to FuseML.
Don't hesitate to send an issue or submit a PR to our documentation.## MkDocs
The documentation is generated using MkDocs. For full documentation on how to
use MkDocs, please go to the [MkDocs website](https://www.mkdocs.org/)We are using the [material theme from squidfunk](https://squidfunk.github.io/mkdocs-material/)
## How to generate/render docs for live edition
Simply run:
```
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
```## How to build the final docs outside a docker container
```
pip install --user mkdocs-material
mkdocs build
```## Where can I see the production documentation?
The generated builds are stored in the gh-pages branch.
They are built and publish through github actions.You can find our production documentation [live on https://fuseml.github.io/docs](https://fuseml.github.io/docs)