-
Notifications
You must be signed in to change notification settings - Fork 8
/
mkdocs.yml
58 lines (53 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
site_name: apidaora
site_description: Asgi App using typing annotation
theme:
name: 'material'
custom_dir: 'theme'
palette:
primary: 'pink'
accent: 'grey'
logo: 'apidaora-white.svg'
favicon: 'favicon.png'
repo_name: dutradda/apidaora
repo_url: https://github.com/dutradda/apidaora
edit_uri: ''
nav:
- apidaora: index.md
# - Features: features.md
- Python dataclass intro: python-dataclass.md
- JSON intro: json.md
# - Http intro: http.md
- Middlewares:
- Middlewares: middlewares/index.md
- Background Tasks: middlewares/background-tasks.md
- Async Background Tasks: middlewares/background-tasks-async.md
- Extra Arguments: middlewares/extra-args.md
- Background Task Controller:
- Background Task: background-task-controller/index.md
- Async Background Task: background-task-controller/async.md
- Background Task with Redis: background-task-controller/redis.md
- Async Background Task with Redis: background-task-controller/async-redis.md
- Background Task with Lock: background-task-controller/lock.md
- Background Task with Lock by Args: background-task-controller/lock-args.md
- Background Task with Lock by Args and Redis: background-task-controller/lock-args-redis.md
- Class Controllers: using-class-controller.md
- Core Module: using-asgi-module.md
- Default Options: using-options.md
- Upload gzip files: using-request-body-gzip.md
# - Complete Request/Response: tutorial/01-complete-request-response.md
# - Deserializations bad requests: tutorial/02-deserializations-bad-requests.md
# - Validating fields: tutorial/03-validating-fields.md
# - Complex nested structures: tutorial/04-complex-nested-structures.md
# - Alternatives, Inspiration and Comparisons: alternatives.md
# - Benchmarks: benchmarks.md
# - Help apidaora - Get Help: help.md
- Development - Contributing: contributing.md
- Changelog: changelog.md
markdown_extensions:
- markdown_include.include:
base_path: docs
- codehilite:
guess_lang: false
extra_css:
- stylesheets/dark_theme.css
- stylesheets/codehilite.css