-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
144 lines (133 loc) · 3.88 KB
/
Copy pathmkdocs.yml
File metadata and controls
144 lines (133 loc) · 3.88 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
site_name: Two-Fast-Auth
site_description: 2FA middleware for FastAPI applications
site_url: https://rennf93.github.io/two-fast-auth/latest/
repo_name: rennf93/two-fast-auth
repo_url: https://github.com/rennf93/two-fast-auth
edit_uri: edit/main/docs/
theme:
name: material
custom_dir: docs/overrides
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: dark-green
accent: green
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: dark-green
accent: green
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.copy
- content.code.annotate
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.indexes
- navigation.top
- search.highlight
- search.share
- toc.follow
icon:
repo: fontawesome/brands/github
logo: assets/logo.svg
favicon: assets/favicon.svg
nav:
- Home: index.md
- Installation: installation.md
- Tutorial:
- First Steps: tutorial/first-steps.md
- Core Module Guide: tutorial/two-factor-auth.md
- Middleware Guide: tutorial/two-factor-middleware.md
- Example Implementation: tutorial/example_implementation.md
- Encryption Example Implementation: tutorial/example_implementation_encryption.md
- Example Application: tutorial/example_app.md
- Encryption Example Application: tutorial/example_app_encryption.md
- API Reference:
- Core Module: core/core.md
- Middleware: middleware/middleware.md
- Encryption: crypto/encryption.md
- Release Notes: release-notes.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- tables
- toc:
permalink: true
- attr_list
- md_in_html
- def_list
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [two_fast_auth]
options:
show_source: true
show_root_heading: true
heading_level: 2
docstring_style: google
show_if_no_docstring: true
filters: ["!^_"]
merge_init_into_class: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/rennf93/two-fast-auth
- icon: fontawesome/brands/python
link: https://pypi.org/project/two-fast-auth/
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve by using our
<a href="https://github.com/rennf93/two-fast-auth/issues/new">issue tracker</a>.
generator: false
meta:
- property: og:type
content: website
- property: og:title
content: Two-Fast-Auth - Two-Factor Authentication Middleware for FastAPI
- property: og:description
content: 2FA middleware for FastAPI applications
- property: og:image
content: https://rennf93.github.io/two-fast-auth/assets/big_logo.svg
- name: keywords
content: fastapi, security, middleware, python, 2fa, two-factor authentication
version:
provider: mike
default: latest
version_selector: true
json_file: /two-fast-auth/versions.json
author:
name: Renzo Franceschini
url: https://github.com/rennf93
copyright: Two-Fast-Auth by
extra_css:
- css/custom.css