-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
100 lines (99 loc) · 2.53 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
96
97
98
99
100
site_name: FastJWT
site_description: FastAPI Plugin for reusable JWT Authentication Management
repo_name: ocarinow/fastjwt
repo_url: https://github.com/ocarinow/fastjwt
edit_uri: edit/main/docs/
theme:
name: material
features:
- navigation.path
- navigation.tracking
- content.code.annotate
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: red
accent: red
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: red
accent: red
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.snippets
- abbr
- admonition
- pymdownx.details
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
heading_level: 3
allow_inspection: true
parameter_headings: false
show_symbol_type_heading: true
show_symbol_type_toc: true
nav:
- Overview: index.md
- Get Started:
- get-started/install.md
- get-started/base_usage.md
- get-started/payload_data.md
- JWT Locations: locations.md
- Refreshing tokens: refresh.md
- Token Freshness: fresh.md
- Custom Callbacks:
- callbacks/user.md
- callbacks/token.md
- Dependencies:
- dependencies/injection.md
- dependencies/deps.md
- dependencies/aliases.md
- dependencies/bundle.md
- Claims: claims.md
- Error Handling: errors.md
- Configuration: config.md
- Development:
- Semantic Versioning: dev/semver.md
- API:
- api/types.md
- api/fastjwt.md
- api/config.md
- api/deps.md
- api/token_payload.md
- api/request_token.md
- api/exceptions.md
extra:
generator: true
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/ocarinow/fastjwt
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/wbenbihi
- icon: fontawesome/solid/globe
link: https://ocarinow.com