-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmkdocs.yml
More file actions
68 lines (66 loc) · 1.91 KB
/
mkdocs.yml
File metadata and controls
68 lines (66 loc) · 1.91 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
site_name: Clientele
site_url: https://docs.clientele.dev
theme:
name: material
favicon: favicon.png
logo: favicon.png
features:
- navigation.tabs
- content.code.copy
- search.suggest
- search.highlight
- navigation.footer
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep orange
accent: light blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep orange
accent: light blue
toggle:
icon: material/brightness-4
name: Switch to light mode
repo_name: phalt/clientele
repo_url: https://github.com/phalt/clientele
nav:
- ⚜️ Home: index.md
- 🚀 Install:
- Install: install.md
- 📕 Documentation:
- Documentation: api-overview.md
- 🎪 Examples: api-examples.md
- ⚙️ Configuration: api-configuration.md
- 🔀 Async Support: api-async.md
- 🔐 Authentication: api-authentication.md
- 🔌 HTTP Backends: api-http-backends.md
- 💾 Caching: api-cache.md
- 🌊 Streaming: api-stream.md
- 🧬 GraphQL: api-graphql.md
- 🚨 Exception Handling: api-exceptions.md
- 🔄 Retries: api-retries.md
- 🪵 Logging: api-logging.md
- 🧪 Testing: api-testing.md
- 🎯 Direct requests: api-direct-requests.md
- 🥧 Mypy support: mypy.md
- 📟 Command line tools:
- 🏗️ Client creator: openapi-cli.md
- ⚡️ API Server Integrations:
- ⚡️ FastAPI: server-fastapi.md
- 🦄 Django REST Framework: server-drf.md
- 🥷 Django Ninja: server-django-ninja.md
- 📝 Change Log: CHANGELOG.md
markdown_extensions:
- pymdownx.inlinehilite
- pymdownx.highlight
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- codehilite