-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmkdocs.yml
76 lines (70 loc) · 1.93 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
site_name: Fastapi Framework Documentation
site_url: https://tert0.github.io/fastapi-framework
site_description: "A FastAPI Framework"
site_author: https://github.com/Tert0/
remote_branch: gh-pages
repo_url: https://github.com/Tert0/fastapi-framework
repo_name: Tert0/fastapi-framework
theme:
name: material
language: en
palette:
- scheme: default
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
primary: teal
accent: indigo
- scheme: slate
toggle:
icon: material/lightbulb
name: Switch to light mode
primary: teal
accent: indigo
icon:
repo: fontawesome/brands/github
nav:
- FastAPI Framework: index.md
- Environment: environment.md
- Database:
- database/index.md
- database/models.md
- database/query.md
- database/insert_delete_modify.md
- database/example.md
- In Memory Backends:
- Redis:
- in_memory_backends/redis/index.md
- in_memory_backends/redis/connection.md
- In Memory Backend:
- in_memory_backends/in_memory_backend/index.md
- API:
- in_memory_backends/api/index.md
- in_memory_backends/api/set_get.md
- in_memory_backends/api/expires.md
- in_memory_backends/api/increase_decrease.md
- in_memory_backends/api/delete_exists.md
- in_memory_backends/api/sets.md
- JWT:
- jwt/index.md
- jwt/jwt_tokens.md
- jwt/example.md
- Rate Limit:
- rate_limit/index.md
- rate_limit/rate_limit_manager.md
- rate_limit/example.md
- Config:
- config/index.md
- Session:
- session/index.md
- session/initialize.md
- session/callbacks-middleware.md
- session/session-data.md
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- admonition
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Tert0