-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmkdocs.yml
93 lines (89 loc) · 2.48 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
site_name: that-depends
repo_url: https://github.com/modern-python/that-depends
docs_dir: docs
edit_uri: edit/main/docs/
nav:
- Quick-Start: index.md
- Introduction:
- Containers: introduction/ioc-container.md
- Dependency Injection: introduction/injection.md
- Scopes: introduction/scopes.md
- String Injection: introduction/string-injection.md
- Multiple Containers: introduction/multiple-containers.md
- Application Settings: introduction/application-settings.md
- Providers:
- Collections: providers/collections.md
- Context-Resources: providers/context-resources.md
- Factories: providers/factories.md
- Object: providers/object.md
- Resources: providers/resources.md
- Selector: providers/selector.md
- Singletons: providers/singleton.md
- Integrations:
- FastAPI: integrations/fastapi.md
- FastStream: integrations/faststream.md
- Litestar: integrations/litestar.md
- Testing:
- Fixtures: testing/fixture.md
- Overriding: testing/provider-overriding.md
- Migration:
- 1.* to 2.*: migration/v2.md
- Development:
- Contributing: dev/contributing.md
- Decisions: dev/main-decisions.md
theme:
name: material
custom_dir: docs/overrides
features:
- content.code.copy
- content.code.annotate
- content.action.edit
- content.action.view
- navigation.footer
- navigation.sections
- navigation.expand
- navigation.top
- navigation.instant
- header.autohide
- announce.dismiss
icon:
edit: material/pencil
view: material/eye
repo: fontawesome/brands/git-alt
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: pink
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: pink
toggle:
icon: material/brightness-4
name: Switch to system preference
markdown_extensions:
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- def_list
- codehilite:
use_pygments: true
- attr_list
- md_in_html
extra_css:
- css/code.css
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/modern-python/that-depends
name: GitHub