-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
78 lines (71 loc) · 1.86 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
site_name: FastAPI Zitadel Auth
repo_url: https://github.com/cleanenergyexchange/fastapi-zitadel-auth
repo_name: cleanenergyexchange/fastapi-zitadel-auth
theme:
name: material
icon:
logo: material/shield-account
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-3
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-5
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
extra_css:
- css/extra.css
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- attr_list
- md_in_html
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
options:
show_source: true
show_root_heading: true
show_category_heading: true
members_order: source
- git-revision-date-localized:
enable_creation_date: true
- minify:
minify_html: true
nav:
- Getting started:
- Welcome to fastapi-zitadel-auth: index.md
- Installation: installation.md
- Zitadel setup: zitadel-setup.md
- FastAPI configuration: fastapi-configuration.md
- Demo project: demo-project.md
- Usage:
- Custom claims and users: custom-claims-and-users.md
- Contributing:
- Features and bugfixes: features-and-bugfixes.md
- Documentation: writing-documentation.md