|
3 | 3 | [](https://github.com/pre-commit/pre-commit)
|
4 | 4 | [![Tests status][tests-badge]][tests-link]
|
5 | 5 | [![Linting status][linting-badge]][linting-link]
|
| 6 | +[![Documentation status][documentation-badge]][documentation-link] |
6 | 7 | [![License][license-badge]](./LICENSE.md)
|
7 | 8 |
|
8 | 9 | <!--
|
|
16 | 17 | [tests-link]: https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.project_slug}}/actions/workflows/tests.yml
|
17 | 18 | [linting-badge]: https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.project_slug}}/actions/workflows/linting.yml/badge.svg
|
18 | 19 | [linting-link]: https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.project_slug}}/actions/workflows/linting.yml
|
| 20 | +[documentation-badge]: https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.project_slug}}/actions/workflows/docs.yml/badge.svg |
| 21 | +[documentation-link]: https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.project_slug}}/actions/workflows/docs.yml |
19 | 22 | [conda-badge]: https://img.shields.io/conda/vn/conda-forge/{{cookiecutter.project_slug}}
|
20 | 23 | [conda-link]: https://github.com/conda-forge/{{cookiecutter.project_slug}}-feedstock
|
21 | 24 | [pypi-link]: https://pypi.org/project/{{cookiecutter.project_slug}}/
|
@@ -51,9 +54,9 @@ Centre for Advanced Research Computing, University College London
|
51 | 54 |
|
52 | 55 | <!-- TODO: can cookiecutter make a list of frameworks? -->
|
53 | 56 |
|
54 |
| -[Framework 1](https://something.com) |
55 |
| -[Framework 2](https://something.com) |
56 |
| -[Framework 3](https://something.com) |
| 57 | +- [Framework 1](https://something.com) |
| 58 | +- [Framework 2](https://something.com) |
| 59 | +- [Framework 3](https://something.com) |
57 | 60 |
|
58 | 61 | ## Getting Started
|
59 | 62 |
|
@@ -108,6 +111,24 @@ pytest tests
|
108 | 111 |
|
109 | 112 | again from the root of the repository.
|
110 | 113 |
|
| 114 | +### Building Documentation |
| 115 | + |
| 116 | +The MkDocs HTML documentation can be built locally by running |
| 117 | + |
| 118 | +```sh |
| 119 | +tox -e docs |
| 120 | +``` |
| 121 | + |
| 122 | +from the root of the repository. |
| 123 | +The built documentation will be written to `site`. |
| 124 | + |
| 125 | +Alternatively to build and preview the documentation locally, in a Python environment |
| 126 | +with the optional `docs` dependencies installed, run |
| 127 | + |
| 128 | +```sh |
| 129 | +mkdocs serve |
| 130 | +``` |
| 131 | + |
111 | 132 | ## Roadmap
|
112 | 133 |
|
113 | 134 | - [x] Initial Research
|
|
0 commit comments