-
Notifications
You must be signed in to change notification settings - Fork 51
/
mkdocs.yml
63 lines (54 loc) · 1.29 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
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
features:
- content.code.copy
palette:
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
light:
primary: indigo
accent: indigo
dark:
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
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