119 lines
3.4 KiB
YAML
119 lines
3.4 KiB
YAML
site_name: Uvicorn
|
|
site_description: The lightning-fast ASGI server.
|
|
site_url: https://uvicorn.dev
|
|
strict: true
|
|
|
|
theme:
|
|
name: material
|
|
custom_dir: docs/overrides
|
|
logo: uvicorn.png
|
|
favicon: uvicorn.png
|
|
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:
|
|
- search.suggest
|
|
- search.highlight
|
|
- content.tabs.link
|
|
- content.code.annotate
|
|
- content.code.copy # https://squidfunk.github.io/mkdocs-material/upgrade/?h=content+copy#contentcodecopy
|
|
- navigation.path
|
|
- navigation.sections # https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation
|
|
- navigation.top # https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#back-to-top-button
|
|
- navigation.tracking
|
|
- navigation.footer # https://squidfunk.github.io/mkdocs-material/upgrade/?h=content+copy#navigationfooter
|
|
- toc.follow # https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#anchor-following
|
|
- announce.dismiss # https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-header/#mark-as-read
|
|
|
|
repo_name: Kludex/uvicorn
|
|
repo_url: https://github.com/Kludex/uvicorn
|
|
edit_uri: edit/main/docs/
|
|
|
|
# https://www.mkdocs.org/user-guide/configuration/#validation
|
|
validation:
|
|
omitted_files: warn
|
|
absolute_links: warn
|
|
unrecognized_links: warn
|
|
|
|
nav:
|
|
- Welcome: index.md
|
|
- Installation: installation.md
|
|
- Settings: settings.md
|
|
- Server Behavior: server-behavior.md
|
|
- Concepts:
|
|
- ASGI: concepts/asgi.md
|
|
- Lifespan: concepts/lifespan.md
|
|
- WebSockets: concepts/websockets.md
|
|
- Deployment:
|
|
- Deployment: deployment/index.md
|
|
- Docker: deployment/docker.md
|
|
- Release Notes: release-notes.md
|
|
- Contributing: contributing.md
|
|
- Sponsorship: sponsorship.md
|
|
|
|
extra:
|
|
analytics:
|
|
provider: google
|
|
property: G-KTS6TXPD85
|
|
|
|
markdown_extensions:
|
|
- attr_list
|
|
- admonition
|
|
- codehilite:
|
|
css_class: highlight
|
|
- toc:
|
|
permalink: true
|
|
- pymdownx.details
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- pymdownx.superfences
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- pymdownx.emoji:
|
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
|
- pymdownx.tasklist:
|
|
custom_checkbox: true
|
|
- pymdownx.extra:
|
|
pymdownx.superfences:
|
|
custom_fences:
|
|
- name: mermaid
|
|
class: mermaid
|
|
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
|
|
plugins:
|
|
- search
|
|
- mkdocstrings:
|
|
handlers:
|
|
python:
|
|
import:
|
|
- url: https://docs.python.org/3/objects.inv
|
|
|
|
plugins:
|
|
- search
|
|
- llmstxt:
|
|
full_output: llms-full.txt
|
|
markdown_description: |-
|
|
Uvicorn is a lightning-fast ASGI server implementation, designed to run asynchronous web applications.
|
|
It supports the ASGI specification, which allows for both HTTP/1.1 and WebSocket protocols.
|
|
sections:
|
|
Sections:
|
|
- index.md
|
|
- settings.md
|
|
- deployment/*.md
|
|
- server-behavior.md
|
|
Concepts:
|
|
- concepts/*.md
|
|
|
|
hooks:
|
|
- docs/plugins/main.py
|