forked from python-ellar/ellar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
153 lines (143 loc) · 4.47 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
site_name: ''
site_description: Ellar - Python ASGI web framework for building fast, efficient and scalable RESTAPIs and server-side application.
site_url: https://github.com/python-ellar/ellar
repo_name: eadwinCode/ellar
repo_url: https://github.com/python-ellar/ellar
edit_uri: blob/master/docs
copyright: |
Copyright © 2021 - 2023 <a href="https://github.com/eadwinCode" target="_blank" rel="noopener">Eadwin Ezeudoh</a>
docs_dir: docs
site_dir: site
theme:
name: material
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- search.highlight
- search.share
- search.suggest
- toc.follow
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.prune
- navigation.tabs
- navigation.left
- navigation.tracking
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: pink
accent: pink
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: pink
accent: pink
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
font:
text: Source Sans Pro
code: Fira Code
language: en
logo: img/EllarLogoB.png
favicon: img/Icon.svg
icon:
repo: fontawesome/brands/git-alt
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- minify:
minify_html: true
- git-revision-date-localized:
enable_creation_date: false
nav:
- Get Started:
- Get Started: index.md
- Quick Setup: quick-project.md
- Contribution: contribution.md
- Release Notes: release-notes.md
- Overview:
- Step One: overview/step-one.md
- Controllers: overview/controllers.md
- Providers: overview/providers.md
- Modules: overview/modules.md
- Middlewares: overview/middleware.md
- Exception Handling: overview/exception_handling.md
- Guards: overview/guards.md
- Custom Decorators: overview/custom_decorators.md
- Module Router: overview/module-router.md
- Interceptors: overview/interceptors.md
- Essentials:
- Execution Context: basics/execution-context.md
- Dynamic Modules: basics/dynamic-modules.md
- Injector Scopes: basics/injector-scopes.md
- Lifespan: basics/lifespan.md
- Testing: basics/testing.md
- Techniques:
- Configuration: techniques/configurations.md
- Input Validations:
- Index: techniques/validations/index.md
- Path: techniques/validations/path-params.md
- Query: techniques/validations/query-params.md
- Header: techniques/validations/header-params.md
- Cookie: techniques/validations/cookie-params.md
- Body: techniques/validations/body.md
- Form: techniques/validations/form-params.md
- File: techniques/validations/file-params.md
- Serializers: techniques/serializers.md
- Response Model: techniques/response-model.md
- Versioning: techniques/versioning.md
- Caching: techniques/caching.md
- Templating:
- Html: techniques/templating.md
- Static Files: techniques/staticfiles.md
- Mount: techniques/mount.md
- Background Tasks: techniques/background-task.md
- Security:
- Authentication: security/authentication.md
- Authorization: security/authorization.md
- CSRF Protection: security/csrf.md
- Sessions: security/sessions.md
- Rate Limiting: security/throttling.md
- CLI:
- Introduction: cli/introduction.md
- Commands:
- new: cli/new-command.md
- create project: cli/create-project-command.md
- create module: cli/create-module-command.md
- runserver: cli/runserver-command.md
- Custom Commands: cli/custom-commands.md
- Command Grouping: cli/command-grouping.md
- WebSockets:
- websockets: websockets/websockets.md
- socketio: websockets/socketio.md
markdown_extensions:
- attr_list
- toc:
permalink: true
- admonition
- def_list
- tables
- abbr
- footnotes
- md_in_html
- codehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.saneheaders
- pymdownx.tilde
extra_css:
- stylesheets/extra.css