forked from encode/uvicorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
43 lines (37 loc) · 951 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
41
42
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"
features:
- content.code.copy
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
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences