-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathmkdocs.yml
67 lines (58 loc) · 1.47 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
65
66
67
site_name: PyNest
site_url: https://PyNest.github.io/PyNest/
docs_dir: docs
repo_url: https://github.com/PythonNest/PyNest
repo_name: Pynest
theme:
favicon: imgs/pynest-logo.png
name: material
logo: imgs/pynest-logo.png
features:
- content.code.copy
- navigation.tabs
icon:
repo: fontawesome/brands/github-alt
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: amber
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: amber
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
plugins:
- search
- mkdocstrings
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- styles/extra.css
nav:
- Overview:
- Introduction: introduction.md
- Getting Started: getting_started.md
- CLI Usage: cli.md
- Modules: modules.md
- Controllers: controllers.md
- Providers: providers.md
- Dependency Injection: dependency_injection.md
- Deployment:
- Docker: docker.md
- Application Examples:
- Blank Application: blank.md
- Sync ORM Application: sync_orm.md
- Async ORM Application: async_orm.md
- MongoDB Application: mongodb.md
- License: license.md