-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmkdocs.yml
71 lines (65 loc) · 2.18 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: Django Ninja Extra
site_description: Django Ninja Extra - Adds more power to Django Ninja RESTful api library
site_url: https://eadwincode.github.io/django-ninja-extra/
repo_name: eadwinCode/django-ninja
repo_url: https://github.com/eadwinCode/django-ninja-extra
edit_uri: blob/master/docs
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deeppurple
accent: deeppurple
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
language: en
icon:
repo: fontawesome/brands/git-alt
plugins:
- search
nav:
- Index: index.md
- APIController:
- Index: api_controller/index.md
- Controller Routes: api_controller/api_controller_route.md
- Controller Permissions: api_controller/api_controller_permission.md
- Model Controller:
- Getting Started: api_controller/model_controller/01_getting_started.md
- Model Configuration: api_controller/model_controller/02_model_configuration.md
- Model Service: api_controller/model_controller/03_model_service.md
- Parameters: api_controller/model_controller/04_parameters.md
- Usage:
- Quick Tutorial: tutorial/index.md
- Authentication: tutorial/authentication.md
- Path Parameter: tutorial/path.md
- Query Request: tutorial/query.md
- Body Request: tutorial/body_request.md
- Form Request: tutorial/form.md
- Schema: tutorial/schema.md
- Pagination: tutorial/pagination.md
- Filtering:
- Ordering: tutorial/ordering.md
- Searching: tutorial/searching.md
- Error Handling: tutorial/custom_exception.md
- Versioning: tutorial/versioning.md
- Throttling: tutorial/throttling.md
- Testing: tutorial/testing.md
- RouteContext: route_context.md
- Settings: settings.md
- Dependency Injection:
- Getting Started: dependency-injection/index.md
- Testing with Dependency Injection: dependency-injection/testing.md
- Contribution: contribution.md
markdown_extensions:
- codehilite
- admonition
- pymdownx.superfences