-
Notifications
You must be signed in to change notification settings - Fork 39
/
mkdocs.yml
64 lines (62 loc) · 2.1 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
site_name: cookiecutter-uv
repo_url: https://github.com/fpgmaas/cookiecutter-uv
site_url: https://fpgmaas.github.io/cookiecutter-uv
site_description: A cookiecutter template for Python projects that use uv for its dependency management
site_author: Florian Maas
edit_uri: edit/main/docs/
repo_name: fpgmaas/cookiecutter-uv
copyright: Maintained by <a href="https://fpgmaas.com">Florian</a>.
nav:
- Home: index.md
- Features:
- CI/CD with Github Actions: features/cicd.md
- Linting & code quality: features/linting.md
- Makefile: features/makefile.md
- Dependency management with uv: features/uv.md
- Publishing to PyPI: features/publishing.md
- Testing with Pytest: features/pytest.md
- Test coverage with codecov: features/codecov.md
- Documentation with MkDocs: features/mkdocs.md
- Compatibility testing with Tox: features/tox.md
- Containerization with Docker: features/docker.md
- Devcontainer with VSCode: features/devcontainer.md
- Tutorial: tutorial.md
- Prompt Arguments: prompt_arguments.md
plugins:
- search
extra_css:
- stylesheets/extra.css
theme:
name: material
feature:
tabs: true
palette:
# Note: Using the system theme works with the insiders version
# https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#automatic-light-dark-mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: astral-light
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: astral-dark
toggle:
icon: material/brightness-4
name: Switch to system preference
icon:
repo: fontawesome/brands/github
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/fpgmaas/cookiecutter-uv
- icon: fontawesome/brands/python
link: https://pypi.org/project/cookiecutter-uv/
markdown_extensions:
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true