uvicorn/mkdocs.yml
Sergey Tsaplin 6c675657af
Add example how to run the server programmatically with reload (#1572)
Co-authored-by: Sergei Tsaplin <s_tsaplin@wargaming.net>
Co-authored-by: Marcelo Trylesinski <marcelotryle@gmail.com>
2022-10-28 19:40:28 +02:00

42 lines
927 B
YAML

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:
- pymdownx.superfences
- admonition
- codehilite:
css_class: highlight
- toc:
permalink: true
extra_javascript:
- "js/chat.js"
- "js/sidecar-1.5.0.js"