File: mkdocs.yml

package info (click to toggle)
starlette 0.50.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,072 kB
  • sloc: python: 13,532; sh: 35; makefile: 6
file content (113 lines) | stat: -rw-r--r-- 3,182 bytes parent folder | download
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
site_name: Starlette
site_description: The little ASGI library that shines.
site_url: https://starlette.dev

repo_name: Kludex/starlette
repo_url: https://github.com/Kludex/starlette
edit_uri: edit/main/docs/

strict: true

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"
  icon:
    repo: fontawesome/brands/github
  features:
    - content.code.copy
    - toc.follow

nav:
  - Introduction: "index.md"
  - Features:
      - 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"
      - Lifespan: "lifespan.md"
      - Background Tasks: "background.md"
      - Server Push: "server-push.md"
      - Exceptions: "exceptions.md"
      - Configuration: "config.md"
      - Thread Pool: "threadpool.md"
      - Test Client: "testclient.md"
  - Release Notes: "release-notes.md"
  - Community:
      - Third Party Packages: "third-party-packages.md"
      - Contributing: "contributing.md"
  - Sponsorship: "sponsorship.md"

extra:
  analytics:
    provider: google
    property: G-Z37GTYBR6M
  social:
    - icon: fontawesome/brands/github-alt
      link: https://github.com/Kludex/starlette
    - icon: fontawesome/brands/discord
      link: https://discord.com/invite/RxKUF5JuHs
    - icon: fontawesome/brands/twitter
      link: https://x.com/marcelotryle
    - icon: fontawesome/brands/linkedin
      link: https://www.linkedin.com/in/marcelotryle
    - icon: fontawesome/solid/globe
      link: https://fastapiexpert.com

markdown_extensions:
  - attr_list
  - admonition
  - pymdownx.highlight
  - pymdownx.superfences
  - pymdownx.details
  - 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

watch:
  - starlette

plugins:
  - search
  - mkdocstrings:
      handlers:
        python:
          options:
            docstring_section_style: list
            show_root_toc_entry: false
            members_order: source
            separate_signature: true
            filters: ["!^_"]
            docstring_options:
              ignore_init_summary: true
            merge_init_into_class: true
            parameter_headings: true
            show_signature_annotations: true
            show_source: false
            signature_crossrefs: true
          inventories:
            - url: https://docs.python.org/3/objects.inv