-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
196 lines (188 loc) · 5.37 KB
/
Copy pathmkdocs.yml
File metadata and controls
196 lines (188 loc) · 5.37 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
site_name: dature
site_url: https://dature.readthedocs.io/
site_description: Type-safe configuration loader for Python dataclasses
site_author: Niccolum
repo_name: reagento/dature
repo_url: https://github.com/reagento/dature
copyright: Copyright © 2026-2026 Niccolum
theme:
name: material
font:
text: Inter
code: Roboto Mono
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
favicon: assets/img/logo.svg
features:
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.indexes
- navigation.tracking
- navigation.prune
- navigation.top
- navigation.footer
- content.code.copy
- content.code.annotate
- content.tabs.link
- search.suggest
- search.highlight
logo: assets/img/logo.svg
icon:
repo: fontawesome/brands/github
custom_dir: docs/overrides
nav:
- Getting Started:
- Home: index.md
- Introduction: introduction.md
- Loading: loading.md
- Supported Types: supported_types.md
- Basic:
- basic/index.md
- Naming: basic/naming.md
- Field Paths: basic/field-paths.md
- Validation: basic/validation.md
- Merging: basic/merging.md
- Masking: basic/masking.md
- Configure: basic/configure.md
- CLI: basic/cli.md
- Advanced:
- advanced/index.md
- Merging & Strategies:
- Merge Strategies: advanced/merge-strategies.md
- Field Groups: advanced/field-groups.md
- Nested Resolve: advanced/nested-resolve.md
- Skip Behaviors: advanced/skip-behaviors.md
- Sources:
- Config Search: advanced/config-search.md
- CLI:
- ArgparseSource: advanced/cli/argparse.md
- Custom CLI Source: advanced/cli/custom.md
- Remote:
- VaultSource: advanced/remote/vault.md
- Custom Remote Source: advanced/remote/custom.md
- Custom Types: advanced/custom_types.md
- Custom Sources: advanced/custom_sources.md
- Cross-Source Refs: advanced/cross_source_refs.md
- Conditional Sources: advanced/conditional_sources.md
- Values:
- ENV Expansion: advanced/env-expansion.md
- Special Types: advanced/special-types.md
- Observability:
- Debug & Reports: advanced/debug.md
- Caching: advanced/caching.md
- Comparison:
- vs pydantic-settings: comparison/why-not-pydantic-settings.md
- vs Hydra: comparison/why-not-hydra.md
- vs Dynaconf: comparison/why-not-dynaconf.md
- Benchmarks: comparison/benchmarks.md
- Reference:
- API Reference: api-reference.md
- Changelog: changelog.md
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- macros
- git-revision-date-localized:
enable_creation_date: true
enable_git_follow: false
fallback_to_build_date: true
strict: false
- social:
enabled: !ENV [CI, false]
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
cache_safe: true
css_files:
- stylesheets/extra.css
- llmstxt:
full_output: llms-full.txt
sections:
Getting Started:
- introduction.md
- loading.md
- supported_types.md
Basic:
- basic/index.md
- basic/naming.md
- basic/field-paths.md
- basic/validation.md
- basic/merging.md
- basic/masking.md
- basic/configure.md
- basic/cli.md
Advanced:
- advanced/index.md
- advanced/merge-strategies.md
- advanced/field-groups.md
- advanced/nested-resolve.md
- advanced/skip-behaviors.md
- advanced/config-search.md
- advanced/cli/argparse.md
- advanced/cli/custom.md
- advanced/remote/vault.md
- advanced/remote/custom.md
- advanced/custom_types.md
- advanced/custom_sources.md
- advanced/cross_source_refs.md
- advanced/conditional_sources.md
- advanced/env-expansion.md
- advanced/special-types.md
- advanced/debug.md
- advanced/caching.md
Comparison:
- comparison/why-not-pydantic-settings.md
- comparison/why-not-hydra.md
- comparison/why-not-dynaconf.md
- comparison/benchmarks.md
Reference:
- api-reference.md
- changelog.md
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascript/readthedocs.js
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path:
- "."
- pymdownx.mark
- pymdownx.keys
- pymdownx.tasklist:
custom_checkbox: true
- attr_list
- md_in_html
- tables
- toc:
permalink: "#"
toc_depth: 3