-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
117 lines (110 loc) · 3.62 KB
/
mkdocs.yml
File metadata and controls
117 lines (110 loc) · 3.62 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
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
site_name: Ushka Framework
site_url: https://kleber-code.github.io/ushka
repo_url: https://github.com/kleber-code/ushka
repo_name: kleber-code/ushka
edit_uri: ""
nav:
- "Home": index.md
- "Features": features.md
- "Guide":
- "Introduction": "guide/index.md"
- "Configuration": "guide/configuration.md"
- "Routing": "guide/routing.md"
- "Templates": "guide/templates.md"
- "Static Files": "guide/static_files.md"
- "ORM": "guide/orm.md"
- "CLI": "guide/cli.md"
- "Dependency Injection": "guide/dependency_injection.md"
- "Flashing": "guide/flashing.md"
- "Error Handling": "guide/error_handling.md"
- "Tutorials":
- "Getting Started": "tutorials/index.md"
- "Simple API": "guide/tutorial_simple_api.md"
- "Roadmap": roadmap.md
- API Reference:
- Ushka:
- Cli:
- Commands:
- Db: api/ushka/cli/commands/db.md
- Dev: api/ushka/cli/commands/dev.md
- New: api/ushka/cli/commands/new.md
- Routes: api/ushka/cli/commands/routes.md
- Run: api/ushka/cli/commands/run.md
- Core:
- App: api/ushka/core/app.md
- Config: api/ushka/core/config.md
- Error Handler: api/ushka/core/error_handler.md
- Exceptions: api/ushka/core/exceptions.md
- Log: api/ushka/core/log.md
- Router: api/ushka/core/router.md
- Http:
- Cookies: api/ushka/http/cookies.md
- Error: api/ushka/http/error.md
- Exceptions: api/ushka/http/exceptions.md
- Multipart: api/ushka/http/multipart.md
- Redirect: api/ushka/http/redirect.md
- Request: api/ushka/http/request.md
- Response: api/ushka/http/response.md
- Sessions: api/ushka/http/sessions.md
- Orm:
- Database: api/ushka/orm/database.md
- Static:
- Files: api/ushka/static/files.md
- Templating:
- Engine: api/ushka/templating/engine.md
- Utils:
- Flash: api/ushka/utils/flash.md
theme:
name: material
logo: assets/logo.jpg
favicon: assets/favicon/favicon.ico
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
- search.suggest
icon:
repo: fontawesome/brands/github
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/kleber-code
- icon: fontawesome/brands/python
link: https://pypi.org/project/ushka/
manifest: "assets/favicon/site.webmanifest"
extra_css:
- assets/custom.css
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- toc:
permalink: true
plugins:
- termynal
- optimize
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy