We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35327ed commit 7d0904aCopy full SHA for 7d0904a
{{cookiecutter.project_name}}/.gitignore
@@ -2,6 +2,7 @@
2
version.py
3
4
# Sphinx automatic generation of API
5
+docs/README.md
6
docs/_api/
7
8
# Combined environments
{{cookiecutter.project_name}}/Makefile
@@ -29,6 +29,6 @@ template-update:
29
pre-commit run --all-files cruft -c .pre-commit-config-cruft.yaml
30
31
docs-build:
32
- cd docs && rm -fr _api && make clean && make html
+ cp README.md docs/. && cd docs && rm -fr _api && make clean && make html
33
34
# DO NOT EDIT ABOVE THIS LINE, ADD COMMANDS BELOW
{{cookiecutter.project_name}}/docs/index.md
@@ -6,6 +6,7 @@
:caption: 'Contents:'
:maxdepth: 2
9
+README.md
10
API Reference <_api/{{ cookiecutter.project_slug }}/index>
11
```
12
0 commit comments