-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
231 lines (211 loc) · 7.18 KB
/
Copy pathmkdocs.yml
File metadata and controls
231 lines (211 loc) · 7.18 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
site_name: pico-ioc Documentation
site_description: Lightweight, async-native dependency injection container for Python
site_url: https://dperezcabrera.github.io/pico-ioc/
repo_name: dperezcabrera/pico-ioc
repo_url: https://github.com/dperezcabrera/pico-ioc
edit_uri: edit/main/docs/
copyright: Copyright © 2025–2026 pico-ioc
strict: true
theme:
name: material
language: en
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.indexes
- navigation.top
- navigation.footer
- toc.follow
- toc.integrate
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- announce.dismiss
icon:
repo: fontawesome/brands/github
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/dperezcabrera/pico-ioc
- icon: fontawesome/brands/python
link: https://pypi.org/project/pico-ioc/
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/extra.js
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
toc_depth: 3
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
hooks:
- docs/hooks.py
plugins:
- search:
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_source: true
show_root_heading: true
members_order: source
docstring_style: google
- minify:
minify_html: true
- git-revision-date-localized:
enable_creation_date: true
type: timeago
nav:
- Home: README.md
- Getting Started: getting-started.md
- FAQ: faq.md
- Learning Roadmap: LEARN.md
- How-To Guides:
- Custom Scopes: how-to/custom-scopes.md
- Interceptors: how-to/interceptors.md
- Testing: how-to/testing.md
- Migration Guide: migration.md
- Examples:
- examples/README.md
- FastAPI TODO App: examples/fastapi-todo-app.md
- User Guide:
- user-guide/README.md
- Core Concepts: user-guide/core-concepts.md
- Configuration Basics: user-guide/configuration-basic.md
- Configuration Binding: user-guide/configuration-binding.md
- Scopes & Lifecycle: user-guide/scopes-lifecycle.md
- Qualifiers & Lists: user-guide/qualifiers-lists.md
- Testing: user-guide/testing.md
- Advanced Features:
- advanced-features/README.md
- Async Resolution: advanced-features/async-resolution.md
- AOP & Interceptors: advanced-features/aop-interceptors.md
- AOP Proxies: advanced-features/aop-proxies.md
- Event Bus: advanced-features/event-bus.md
- Conditional Binding: advanced-features/conditional-binding.md
- Health Checks: advanced-features/health-checks.md
- Custom Scanners: advanced-features/custom-scanners.md
- Self Injection: advanced-features/self-injection.md
- Observability:
- observability/README.md
- Container Context: observability/container-context.md
- Observers & Metrics: observability/observers-metrics.md
- Exporting Graph: observability/exporting-graph.md
- Resolution Graph: observability/resolution-graph.md
- Cookbook (Patterns):
- cookbook/README.md
- Multi-Tenant Apps: cookbook/pattern-multi-tenant.md
- Hot Reload: cookbook/pattern-hot-reload.md
- CLI Applications: cookbook/pattern-cli-app.md
- CQRS Command Bus: cookbook/pattern-cqrs.md
- Feature Toggles (AOP): cookbook/pattern-aop-feature-toggle.md
- Structured Logging (AOP): cookbook/pattern-aop-structured-logging.md
- Security Checks (AOP): cookbook/pattern-aop-security.md
- Method Profiling (AOP): cookbook/pattern-aop-profiling.md
- Config Overrides: cookbook/pattern-config-overrides.md
- Architecture:
- architecture/README.md
- Design Principles: architecture/design-principles.md
- Comparison: architecture/comparison.md
- Internals: architecture/internals.md
- Runtime Model: architecture/runtime-model-scheduling.md
- Docs Assets: architecture/docs-assets.md
- ADRs:
- adr/README.md
- ADR-001 Async Native: adr/adr-0001-async-native.md
- ADR-002 Tree Config: adr/adr-0002-tree-based-configuration.md
- ADR-003 Context Scopes: adr/adr-0003-context-aware-scopes.md
- ADR-004 Observability: adr/adr-0004-observability.md
- ADR-005 AOP: adr/adr-0005-aop.md
- ADR-006 Eager Validation: adr/adr-0006-eager-validation.md
- ADR-007 Event Bus: adr/adr-0007-event_bus.md
- ADR-008 Circular Dependencies: adr/adr-0008-circular-dependencies.md
- ADR-009 Flexible Provides: adr/adr-0009-flexible-provides.md
- ADR-010 Unified Configuration: adr/adr-0010-unified-configuration.md
- ADR-011 Custom Scanners: adr/adr-0011-custom-scanners.md
- ADR-012 Resolution Path (Proposed): adr/adr-0012-resolution-path-in-errors.md
- ADR-013 Hot Config Refresh: adr/adr-0013-hot-config-refresh.md
- ADR-014 API Stability (Proposed): adr/adr-0014-api-stability-and-deprecation.md
- Built for the AI Era: ai-ready.md
- AI Coding Skills: skills.md
- API Reference:
- api-reference/README.md
- Analysis API: api-reference/analysis-api.md
- Constants: api-reference/constants.md
- Glossary: api-reference/glossary.md
- Decorators: api-reference/decorators.md
- Container API: api-reference/container.md
- Container Context API: api-reference/container-context-api.md
- Protocols: api-reference/protocols.md
- Provider Selector: api-reference/provider-selector.md
- EventBus API: api-reference/event_bus.md
- Exceptions: api-reference/exceptions.md