-
Notifications
You must be signed in to change notification settings - Fork 53
/
mkdocs.yml
95 lines (93 loc) · 2.47 KB
/
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
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
site_name: fastapi-sso
site_url: https://tomasvotava.github.io/fastapi-sso/
site_author: Tomas Votava <[email protected]>
site_dir: ./public
theme:
features:
- navigation.instant
# - navigation.sections
# - navigation.expand
- navigation.path
- toc.follow
- toc.integrate
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
accent: red
toggle:
icon: material/brightness-7
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey
accent: yellow
toggle:
icon: material/brightness-4
font:
text: Roboto
code: Roboto Mono
language: en
icon:
logo: fontawesome/solid/users
repo_url: https://github.com/tomasvotava/fastapi-sso
extra:
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
cookies:
github: GitHub
analytics: Google analytics
analytics:
provider: google
property: 407765678
social:
- icon: material/github
link: https://github.com/tomasvotava/fastapi-sso
- icon: simple/buymeacoffee
link: https://www.buymeacoffee.com/tomas.votava
copyright: >
Copyright © 2023 Tomas Votava –
<a href="#__consent">Change cookie settings</a>
plugins:
- search
- social
- mkdocstrings:
handlers:
python:
options:
show_source: false
show_symbol_type_heading: true
show_symbol_type_toc: true
summary: true
docstring_style: google
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
auto_title: true
linenums: true
- pymdownx.superfences
- markdown_include.include:
base_path: docs
- toc:
toc_depth: 2
hooks:
- ./docs/generate_reference.py
nav:
- index.md
- tutorials.md
- How-to Guides:
- how-to-guides/00-installation.md
- how-to-guides/additional-query-params.md
- how-to-guides/additional-scopes.md
- how-to-guides/http-development.md
- how-to-guides/redirect-uri-request-time.md
- how-to-guides/state-return-url.md
- how-to-guides/use-with-fastapi-security.md
- how-to-guides/key-error.md
- contributing.md