-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
84 lines (77 loc) · 2.65 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
site_name: "Xpresso"
site_description: Developer centric, performant and extensible ASGI framework
site_url: https://www.xpresso-api.dev
theme:
name: "material"
logo: assets/images/xpresso-bean.png
favicon: assets/images/xpresso-bean.png
custom_dir: docs/overrides
palette:
- scheme: "default"
primary: "black"
accent: "amber"
media: "(prefers-color-scheme: light)"
toggle:
icon: "material/weather-night"
name: "Switch to dark mode"
- scheme: "slate"
primary: "black"
accent: "amber"
media: "(prefers-color-scheme: dark)"
toggle:
icon: "material/weather-sunny"
name: "Switch to light mode"
repo_name: adriangb/xpresso
repo_url: https://github.com/adriangb/xpresso
edit_uri: "blob/main/docs/"
nav:
- Xpresso: "README.md"
- Python Types: "types.md"
- Tutorial:
- Minimal App: "tutorial/minimal_app.md"
- Path Parameters: "tutorial/path_params.md"
- Query Parameters: "tutorial/query_params.md"
- Parameter Constraints and Metadata: "tutorial/param_constraints_and_metadata.md"
- Request Body: "tutorial/body.md"
- Cookie Parameters: "tutorial/cookie_params.md"
- Header Parameters: "tutorial/header_params.md"
- File Uploads: "tutorial/files.md"
- Forms: "tutorial/forms.md"
- Dependencies:
- Introduction: "tutorial/dependencies/README.md"
- Nested Dependencies: "tutorial/dependencies/nested.md"
- Dependency Lifecycle: "tutorial/dependencies/lifecycle.md"
- HTTP Parameter Dependencies: "tutorial/dependencies/http-params.md"
- Scopes: "tutorial/dependencies/scopes.md"
- Shared Dependencies: "tutorial/dependencies/shared.md"
- Middleware:
- Introduction: "tutorial/middleware/README.md"
- Lifespans: "tutorial/lifespan.md"
- Routing: "tutorial/routing.md"
- Advanced Usage:
- Customizing Responses: advanced/responses.md
- WebSockets: advanced/websockets.md
- Dependencies:
- Performance: "advanced/dependencies/performance.md"
- Caching: "advanced/dependencies/caching.md"
- Accessing Responses: "advanced/dependencies/responses.md"
- Dependency Overrides: "advanced/dependencies/overrides.md"
- Composition Root: "advanced/dependencies/composition-root.md"
- Binders: advanced/binders.md
- Proxies and URL paths: advanced/proxies-root-path.md
- Body Unions: advanced/body-union.md
- Contributing: "contributing.md"
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- css/custom.css
extra:
version:
provider: mike
plugins:
- mike:
version_selector: true
- search: