-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathmkdocs.yml
More file actions
174 lines (173 loc) · 5.86 KB
/
Copy pathmkdocs.yml
File metadata and controls
174 lines (173 loc) · 5.86 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
site_name: Wireup
nav:
- 📚 Documentation:
- Introduction:
- Overview: index.md
- Getting Started: getting_started.md
- Benchmarks: benchmarks.md
- Core Concepts:
- Container: container.md
- Injectables: injectables.md
- Configuration: configuration.md
- Features:
- Lifetimes & Scopes: lifetimes_and_scopes.md
- Factories: factories.md
- Resource Management: resources.md
- Interfaces: interfaces.md
- Function Injection: function_injection.md
- Interactive Graph: interactive_graph.md
- Advanced Patterns:
- Reusable Bundles: reusable_bundles.md
- Conditional Registration: conditional_registration.md
- Generic Dependencies: generic_dependencies.md
- Guides:
- Packaging Injectables: packaging_injectables.md
- Testing: testing.md
- What Wireup Validates: what_wireup_validates.md
- Upgrading: upgrading.md
- Versioning: versioning.md
- Integrations:
- Integrations: integrations/index.md
- Web Frameworks:
- Django:
- Django Integration: integrations/django/index.md
- Interactive Graph: integrations/django/interactive_graph.md
- Setup and Installation: integrations/django/setup.md
- Inject in Views: integrations/django/view_injection.md
- Request-Time Injection: integrations/django/request_time_injection.md
- App-Level Injection: integrations/django/app_injection.md
- Django Testing: integrations/django/testing.md
- Troubleshooting: integrations/django/troubleshooting.md
- FastAPI:
- FastAPI Integration: integrations/fastapi/index.md
- Inject in Routes: integrations/fastapi/inject_in_routes.md
- Request and WebSocket Context in Services: integrations/fastapi/context_in_services.md
- Class Based Handlers: integrations/fastapi/class_based_handlers.md
- Request-Time Injection: integrations/fastapi/request_time_injection.md
- Background Tasks: integrations/fastapi/background_tasks.md
- FastAPI Testing: integrations/fastapi/testing.md
- Troubleshooting: integrations/fastapi/troubleshooting.md
- Flask:
- Flask Integration: integrations/flask/index.md
- FastMCP:
- FastMCP Usage: integrations/fastmcp/index.md
- AIOHTTP:
- AIOHTTP Integration: integrations/aiohttp/index.md
- Class-Based Handlers: integrations/aiohttp/class_based_handlers.md
- Starlette:
- Starlette Integration: integrations/starlette/index.md
- Background Tasks: integrations/starlette/background_tasks.md
- Strawberry:
- Strawberry Integration: integrations/strawberry/index.md
- Generic ASGI:
- ASGI Integration: integrations/asgi/generic_asgi.md
- Command Line Interfaces:
- Click:
- Click Integration: integrations/click/index.md
- Typer:
- Typer Integration: integrations/typer/index.md
- Task Queues:
- Celery:
- Celery Integration: integrations/celery/index.md
- Migrate to Wireup:
- Overview: migrate_to_wireup/index.md
- FastAPI (from Depends): migrate_to_wireup/fastapi_depends.md
- Dependency Injector: migrate_to_wireup/dependency_injector.md
- API Reference:
- wireup: class/wireup.md
- OverrideManager: class/override_manager.md
- ConfigStore: class/config_store.md
- Integrations:
- Django: class/django_integration.md
- FastAPI: class/fastapi_integration.md
- Flask: class/flask_integration.md
- FastMCP: class/fastmcp_integration.md
- AIOHTTP: class/aiohttp_integration.md
- ASGI: class/asgi_integration.md
- Starlette: class/starlette_integration.md
- Celery: class/celery_integration.md
- Click: class/click_integration.md
- Typer: class/typer_integration.md
repo_url: https://github.com/maldoinc/wireup
repo_name: maldoinc/wireup
theme:
icon:
logo: simple/wire
name: material
custom_dir: overrides
features:
- search.highlight
- navigation.sections
- content.code.annotate
- navigation.instant
- navigation.tabs
- navigation.indexes
font:
code: JetBrains Mono
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
markdown_extensions:
- meta
- attr_list
- md_in_html
- admonition
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences
- def_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- toc:
permalink: true
plugins:
- mike
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [".."]
options:
group_by_category: true
show_category_heading: true
docstring_style: sphinx
show_source: false
filters:
- "!^_"
- "^__init__$"
extra_css:
- stylesheets/extra.css
docs_dir: pages
extra:
version:
provider: mike