forked from LukeMathWalker/pavex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
119 lines (119 loc) · 3.78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
site_name: Pavex
site_url: "https://pavex.dev/"
site_description: "The documentation for Pavex, a framework for building robust APIs in Rust."
repo_url: "https://github.com/LukeMathWalker/pavex"
repo_name: "LukeMathWalker/pavex"
edit_uri: "edit/main/docs/"
plugins:
- social
- search
- redirects:
redirect_maps:
'index.md': 'overview/index.md'
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
dedent_subsections: true
- attr_list
- md_in_html
- footnotes
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
theme:
name: material
logo: assets/inverted_logo.png
favicon: assets/logo.ico
icon:
repo: fontawesome/brands/github
edit: material/pencil
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.footer
- navigation.top
- toc.integrate
- toc.follow
- content.action.edit
- content.code.copy
- content.code.annotate
palette:
# Palette toggle for light mode
- scheme: default
primary: black
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: black
toggle:
icon: material/weather-sunny
name: Switch to light mode
nav:
- "Overview":
- overview/index.md
- overview/why_pavex.md
- "Getting Started":
- "Installation": getting_started/index.md
- getting_started/learning_paths.md
- "Quickstart":
- getting_started/quickstart/index.md
- getting_started/quickstart/blueprint.md
- getting_started/quickstart/routing.md
- getting_started/quickstart/dependency_injection.md
- getting_started/quickstart/error_handling.md
- getting_started/quickstart/testing.md
- getting_started/quickstart/going_further.md
- "Guide":
- guide/index.md
- "Project structure": guide/project_structure/index.md
- "Routing":
- guide/routing/index.md
- guide/routing/method_guards.md
- guide/routing/path_patterns.md
- guide/routing/request_handlers.md
- "Request data":
- guide/request_data/index.md
- guide/request_data/wire_data.md
- guide/request_data/request_target.md
- "Path":
- guide/request_data/path/index.md
- guide/request_data/path/path_parameters.md
- guide/request_data/path/raw_path_parameters.md
- "Query":
- guide/request_data/query/index.md
- guide/request_data/query/query_parameters.md
- "Body":
- guide/request_data/body/index.md
- "Deserializers":
- guide/request_data/body/deserializers/index.md
- guide/request_data/body/deserializers/json.md
- guide/request_data/body/byte_wrappers.md
- "Dependency injection":
- guide/dependency_injection/index.md
- "Core concepts":
- guide/dependency_injection/core_concepts/constructors.md
- guide/dependency_injection/core_concepts/application_state.md
- guide/dependency_injection/core_concepts/framework_primitives.md
- guide/dependency_injection/cookbook.md
- guide/dependency_injection/limitations.md
- "Middleware": guide/middleware/index.md
- "API Reference": api_reference/pavex/
exclude_docs: |
README.md
Dockerfile
extra_css:
- ansi.css
- mermaid.css