forked from benavlabs/FastAPI-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
150 lines (142 loc) · 5.01 KB
/
mkdocs.yml
File metadata and controls
150 lines (142 loc) · 5.01 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
145
146
147
148
149
150
site_name: FastAPI Boilerplate
site_description: A production-ready FastAPI boilerplate with async support, JWT authentication, Redis caching, and more.
site_author: Benav Labs
site_url: https://github.com/benavlabs/fastapi-boilerplate
theme:
name: material
font:
text: Ubuntu
logo: assets/FastAPI-boilerplate.png
favicon: assets/FastAPI-boilerplate.png
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.tabs
- navigation.indexes
- search.suggest
- content.code.copy
- content.code.annotate
- navigation.top
- navigation.footer
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- mkdocstrings:
handlers:
python:
rendering:
show_source: true
nav:
- Home: index.md
- Getting Started:
- Overview: getting-started/index.md
- Installation: getting-started/installation.md
- Configuration: getting-started/configuration.md
- First Run: getting-started/first-run.md
- User Guide:
- Overview: user-guide/index.md
- Project Structure: user-guide/project-structure.md
- Configuration:
- Overview: user-guide/configuration/index.md
- Environment Variables: user-guide/configuration/environment-variables.md
- Settings Classes: user-guide/configuration/settings-classes.md
- Docker Setup: user-guide/configuration/docker-setup.md
- Environment-Specific: user-guide/configuration/environment-specific.md
- Database:
- Overview: user-guide/database/index.md
- Models: user-guide/database/models.md
- Schemas: user-guide/database/schemas.md
- CRUD Operations: user-guide/database/crud.md
- Migrations: user-guide/database/migrations.md
- API:
- Overview: user-guide/api/index.md
- Endpoints: user-guide/api/endpoints.md
- Pagination: user-guide/api/pagination.md
- Exceptions: user-guide/api/exceptions.md
- Versioning: user-guide/api/versioning.md
- Authentication:
- Overview: user-guide/authentication/index.md
- JWT Tokens: user-guide/authentication/jwt-tokens.md
- User Management: user-guide/authentication/user-management.md
- Permissions: user-guide/authentication/permissions.md
- Caching:
- Overview: user-guide/caching/index.md
- Redis Cache: user-guide/caching/redis-cache.md
- Client Cache: user-guide/caching/client-cache.md
- Cache Strategies: user-guide/caching/cache-strategies.md
- Background Tasks: user-guide/background-tasks/index.md
- Rate Limiting: user-guide/rate-limiting/index.md
- Development: user-guide/development.md
- Production: user-guide/production.md
- Testing: user-guide/testing.md
# - Examples:
# - Overview: examples/index.md
# - Basic CRUD: examples/basic-crud.md
# - Authentication Flow: examples/authentication-flow.md
# - Background Job Workflow: examples/background-job-workflow.md
# - Caching Patterns: examples/caching-patterns.md
# - Production Setup: examples/production-setup.md
# - Reference:
# - Overview: reference/index.md
# - API Reference: reference/api-reference.md
# - Configuration Reference: reference/configuration-reference.md
# - Database Schema: reference/database-schema.md
# - Middleware Reference: reference/middleware-reference.md
# - Dependencies Reference: reference/dependencies-reference.md
# - Contributing:
# - Overview: contributing/index.md
# - Development Setup: contributing/development-setup.md
# - Coding Standards: contributing/coding-standards.md
# - Pull Request Process: contributing/pull-request-process.md
# - Testing Guidelines: contributing/testing-guidelines.md
# - Migration Guides:
# - Overview: migration-guides/index.md
# - Version Migrations: migration-guides/from-v1-to-v2.md
# - From Other Frameworks: migration-guides/from-other-frameworks.md
# - FAQ: faq.md
markdown_extensions:
- admonition
- codehilite
- toc:
permalink: true
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- attr_list
- md_in_html
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/benavlabs/fastapi-boilerplate
- icon: fontawesome/brands/python
link: https://pypi.org/project/fastapi/
version:
provider: mike
extra_css:
- stylesheets/extra.css
repo_name: benavlabs/fastapi-boilerplate
repo_url: https://github.com/benavlabs/fastapi-boilerplate
edit_uri: edit/main/docs/