forked from RobertCraigie/prisma-client-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
79 lines (73 loc) · 2.26 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
site_url: https://example.com/
site_dir: build/site
site_name: Prisma Client Python
site_description: An auto-generated and fully type-safe database client
site_author: Robert Craigie
repo_name: RobertCraigie/prisma-client-py
repo_url: https://github.com/RobertCraigie/prisma-client-py
strict: true
theme:
name: material
palette:
- scheme: default
primary: red
accent: red
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: pink
accent: pink
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- navigation.tabs
- navigation.tabs.sticky
logo: "logo.svg"
favicon: "favicon.png"
font:
text: Roboto
code: Roboto Mono
markdown_extensions:
- pymdownx.highlight:
use_pygments: false
- pymdownx.extra
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
- pymdownx.snippets
- pymdownx.superfences
- admonition
extra_javascript:
- https://unpkg.com/[email protected]
- scripts/highlight.js
nav:
- Home: index.md
- Getting Started:
- Setup: getting_started/setup.md
- Type Safety: getting_started/type-safety.md
- Quick Start: getting_started/quickstart.md
- Advanced Usage: getting_started/advanced.md
- Partial Types: getting_started/partial-types.md
- Reference:
- Query Operations: reference/operations.md
- Client: reference/client.md
- Transactions: reference/transactions.md
- Selecting Fields: reference/selecting-fields.md
- Model Based Access: reference/model-actions.md
- Batching Queries: reference/batching.md
- Partial Types: reference/partials.md
- Troubleshooting: reference/troubleshooting.md
- Type Checkers:
- Pyright: reference/type_checkers/pyright.md
- Mypy: reference/type_checkers/mypy.md
- Limitations: reference/limitations.md
- Configuration: reference/config.md
- Command Line: reference/command-line.md
- Custom Generators: reference/custom-generators.md
- Logging: reference/logging.md
- Binaries: reference/binaries.md
- Contributing:
- How to Contribute: contributing/contributing.md
- Architecture: contributing/architecture.md