forked from encode/uvicorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
40 lines (35 loc) · 902 Bytes
/
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
site_name: Uvicorn
site_description: The lightning-fast ASGI server.
theme:
name: "material"
custom_dir: docs/overrides
palette:
- scheme: "default"
media: "(prefers-color-scheme: light)"
toggle:
icon: "material/lightbulb"
name: "Switch to dark mode"
- scheme: "slate"
media: "(prefers-color-scheme: dark)"
primary: "blue"
toggle:
icon: "material/lightbulb-outline"
name: "Switch to light mode"
repo_name: encode/uvicorn
repo_url: https://github.com/encode/uvicorn
edit_uri: ""
nav:
- Introduction: "index.md"
- Settings: "settings.md"
- Deployment: "deployment.md"
- Server Behavior: "server-behavior.md"
- Contributing: "contributing.md"
markdown_extensions:
- admonition
- codehilite:
css_class: highlight
- toc:
permalink: true
extra_javascript:
- "js/chat.js"
- "js/sidecar-1.5.0.js"