-
Notifications
You must be signed in to change notification settings - Fork 58
/
mkdocs.yml
87 lines (81 loc) · 2.17 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
site_name: FastCRUD
site_description: Powerful CRUD methods and automatic endpoint creation for FastAPI.
site_author: Igor Magalhaes
site_url: https://github.com/igorbenav/fastcrud
theme:
name: material
font:
text: Ubuntu
logo: assets/logo.png
favicon: assets/logo.png
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.tabs
- navigation.indexes
- search.suggest
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: deep purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: deep purple
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- mkdocstrings:
handlers:
python:
rendering:
show_source: true
nav:
- FastCRUD: index.md
- Installing: installing.md
- Quick-Start: quick-start.md
- Using SQLModel: sqlmodel.md
- Usage:
- Overview: usage/overview.md
- Automatic Endpoints: usage/endpoint.md
- CRUD Utilities: usage/crud.md
- Advanced:
- Overview: advanced/overview.md
- Custom Endpoints: advanced/endpoint.md
- Advanced CRUD Usage: advanced/crud.md
- Joining Models: advanced/joins.md
- API Reference:
- Overview: api/overview.md
- FastCRUD: api/fastcrud.md
- EndpointCreator: api/endpoint_creator.md
- crud_router: api/crud_router.md
- paginated: api/paginated.md
- Community:
- Overview: community/overview.md
- Contributing: community/CONTRIBUTING.md
- Code of Conduct: community/CODE_OF_CONDUCT.md
- License: community/LICENSE.md
- Changelog: changelog.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
repo_name: igorbenav/fastcrud
repo_url: https://github.com/igorbenav/fastcrud
edit_uri: edit/main/docs/