This repository has been archived by the owner on Nov 10, 2021. It is now read-only.
forked from fastapi-users/fastapi-users
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
90 lines (84 loc) · 2.36 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
site_name: FastAPI Users
site_description: Ready-to-use and customizable users management for FastAPI
theme:
name: 'material'
palette:
- scheme: default
primary: 'red'
accent: 'red'
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
primary: 'red'
accent: 'red'
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
icon:
logo: material/account-supervisor
favicon: 'favicon.png'
repo_name: frankie567/fastapi-users
repo_url: https://github.com/fastapi-users/fastapi-users
edit_uri: ""
markdown_extensions:
- markdown_include.include:
base_path: docs
- toc:
permalink: true
- admonition
- codehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid
- pymdownx.tasklist
- pymdownx.tabbed
plugins:
- search
- mermaid2:
arguments:
theme: |
^(JSON.parse(window.localStorage.getItem('/.__palette')).index == 1) ? 'dark' : 'light'
extra_javascript:
- https://unpkg.com/mermaid/dist/mermaid.min.js
nav:
- About: index.md
- installation.md
- Configuration:
- configuration/overview.md
- configuration/models.md
- Database adapters:
- configuration/databases/sqlalchemy.md
- configuration/databases/mongodb.md
- configuration/databases/tortoise.md
- configuration/databases/ormar.md
- Authentication backends:
- Introduction: configuration/authentication/index.md
- configuration/authentication/jwt.md
- configuration/authentication/cookie.md
- configuration/user-manager.md
- Routers:
- Introduction: configuration/routers/index.md
- configuration/routers/auth.md
- configuration/routers/register.md
- configuration/routers/verify.md
- configuration/routers/reset.md
- configuration/routers/users.md
- configuration/full-example.md
- configuration/oauth.md
- Usage:
- usage/flow.md
- usage/routes.md
- usage/current-user.md
- Cookbook:
- cookbook/create-user-programmatically.md
- Migration:
- migration/08_to_1x.md
- migration/1x_to_2x.md
- migration/2x_to_3x.md
- migration/3x_to_4x.md
- migration/4x_to_5x.md
- migration/6x_to_7x.md
- migration/7x_to_8x.md