-
Notifications
You must be signed in to change notification settings - Fork 14
/
mkdocs.yml
71 lines (66 loc) · 1.96 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
site_name: Pydantic-redis
site_description: Pydantic-redis, simple declarative ORM for redis
site_url: https://sopherapps.github.io/pydantic-redis/
theme:
name: material
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
toggle:
icon: material/lightbulb
name: Switch to light mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
features:
- search.suggest
- search.highlight
- content.tabs.link
plugins:
- search
- mkdocstrings
repo_name: sopherapps/pydantic-redis
repo_url: https://github.com/sopherapps/pydantic-redis
nav:
- 'Pydantic-redis': index.md
- Tutorials:
- tutorials/intro.md
- Synchronous API:
- tutorials/synchronous/models.md
- tutorials/synchronous/insert.md
- tutorials/synchronous/update.md
- tutorials/synchronous/delete.md
- tutorials/synchronous/select.md
- tutorials/synchronous/nested-models.md
- tutorials/synchronous/list-of-nested-models.md
- tutorials/synchronous/tuple-of-nested-models.md
- Asynchronous API:
- tutorials/asynchronous/models.md
- tutorials/asynchronous/insert.md
- tutorials/asynchronous/update.md
- tutorials/asynchronous/delete.md
- tutorials/asynchronous/select.md
- tutorials/asynchronous/nested-models.md
- tutorials/asynchronous/list-of-nested-models.md
- tutorials/asynchronous/tuple-of-nested-models.md
- 'Explanation':
- explanation/why-use-orms.md
- reference.md
- change-log.md
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- mdx_include:
base_path: docs
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- js/termynal.js
- js/custom.js