forked from litestar-org/litestar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
79 lines (79 loc) · 2.17 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
site_name: Starlite
repo_url: https://github.com/starlite-api/starlite
repo_name: starlite-api/starlite
site_url: https://starlite-api.github.io/starlite
theme:
name: material
palette:
- media: "(prefers-color-scheme: dark)"
scheme: mirage
toggle:
icon: material/toggle-switch
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: mirage-light
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
favicon: images/starlite-favicon.ico
logo: images/2x/[email protected]
icon:
repo: fontawesome/brands/github
features:
- navigation.tracking
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- search.share
plugins:
- search
- social:
cards_color:
fill: "#1d2433"
text: "#d6dbe1"
cards_font: Tahoma
extra_css:
- css/extra.css
nav:
- Overview: index.md
- Usage:
- usage/0-the-starlite-app.md
- usage/1-routers-and-controllers.md
- Route Handlers:
- usage/2-route-handlers/0_route_handlers_concept.md
- usage/2-route-handlers/1_http_route_handlers.md
- usage/2-route-handlers/2_websocket_route_handlers.md
- usage/2-route-handlers/3_asgi_route_handlers.md
- usage/3-parameters.md
- usage/4-request-body.md
- usage/5-responses.md
- usage/6-dependency-injection.md
- usage/7-middleware.md
- usage/8-authentication.md
- usage/9-guards.md
- usage/10-plugins.md
- usage/11-data-transfer-objects.md
- usage/12-openapi.md
- usage/13-request-lifecycle-hooks.md
- usage/14-testing.md
- usage/15-templating.md
- usage/16-caching.md
- migration.md
- contributing.md
- license.md
extra:
social:
- icon: fontawesome/brands/discord
link: https://discord.gg/X3FJqy8d2j
- icon: fontawesome/brands/github
link: https://github.com/starlite-api/starlite
markdown_extensions:
- admonition
- attr_list
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.superfences