2018-08-28 13:58:03 +00:00
|
|
|
site_name: Starlette
|
|
|
|
site_description: The little ASGI library that shines.
|
2021-06-25 07:46:38 +00:00
|
|
|
site_url: https://www.starlette.io
|
2018-08-28 13:58:03 +00:00
|
|
|
|
|
|
|
theme:
|
2021-02-07 19:06:30 +00:00
|
|
|
name: 'material'
|
2021-08-19 14:17:41 +00:00
|
|
|
custom_dir: docs/overrides
|
2021-09-18 11:08:29 +00:00
|
|
|
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'
|
2022-10-07 15:25:42 +00:00
|
|
|
icon:
|
|
|
|
repo: fontawesome/brands/github
|
2023-08-27 12:07:33 +00:00
|
|
|
features:
|
|
|
|
- content.code.copy
|
2018-08-28 13:58:03 +00:00
|
|
|
|
|
|
|
repo_name: encode/starlette
|
|
|
|
repo_url: https://github.com/encode/starlette
|
2022-10-07 15:25:42 +00:00
|
|
|
edit_uri: edit/master/docs/
|
2018-08-28 13:58:03 +00:00
|
|
|
|
2018-08-28 15:25:32 +00:00
|
|
|
nav:
|
2021-02-07 19:06:30 +00:00
|
|
|
- Introduction: 'index.md'
|
|
|
|
- Applications: 'applications.md'
|
|
|
|
- Requests: 'requests.md'
|
|
|
|
- Responses: 'responses.md'
|
|
|
|
- WebSockets: 'websockets.md'
|
|
|
|
- Routing: 'routing.md'
|
|
|
|
- Endpoints: 'endpoints.md'
|
|
|
|
- Middleware: 'middleware.md'
|
|
|
|
- Static Files: 'staticfiles.md'
|
|
|
|
- Templates: 'templates.md'
|
|
|
|
- Database: 'database.md'
|
|
|
|
- GraphQL: 'graphql.md'
|
|
|
|
- Authentication: 'authentication.md'
|
|
|
|
- API Schemas: 'schemas.md'
|
2023-03-09 23:20:06 +00:00
|
|
|
- Lifespan: 'lifespan.md'
|
2021-02-07 19:06:30 +00:00
|
|
|
- Background Tasks: 'background.md'
|
|
|
|
- Server Push: 'server-push.md'
|
|
|
|
- Exceptions: 'exceptions.md'
|
|
|
|
- Configuration: 'config.md'
|
|
|
|
- Test Client: 'testclient.md'
|
|
|
|
- Third Party Packages: 'third-party-packages.md'
|
2022-06-18 16:34:13 +00:00
|
|
|
- Contributing: 'contributing.md'
|
2021-02-07 19:06:30 +00:00
|
|
|
- Release Notes: 'release-notes.md'
|
2018-08-28 13:58:03 +00:00
|
|
|
|
|
|
|
markdown_extensions:
|
2019-11-13 12:25:18 +00:00
|
|
|
- mkautodoc
|
2021-02-05 19:13:39 +00:00
|
|
|
- admonition
|
2021-02-07 19:06:30 +00:00
|
|
|
- pymdownx.highlight
|
|
|
|
- pymdownx.superfences
|
2022-08-09 10:08:52 +00:00
|
|
|
- pymdownx.tabbed:
|
2023-03-09 23:20:06 +00:00
|
|
|
alternate_style: true
|