-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
252 lines (244 loc) · 7.59 KB
/
Copy pathmkdocs.yml
File metadata and controls
252 lines (244 loc) · 7.59 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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: DDEV Docs
# Override site url before docs build,
# otherwise 404 page would be broken
site_url: https://docs.ddev.com/en/stable/
repo_url: https://github.com/ddev/ddev
repo_name: ddev/ddev
edit_uri: blob/main/docs/content
copyright: DDEV Foundation
extra_javascript:
- 'assets/open-tabs-from-hash.js'
extra_css:
- 'assets/extra.css'
site_author: DDEV Foundation
site_description: >-
Do local website development on your computer or in the cloud with DDEV.
docs_dir: docs/content
# Configuration
theme:
variant: classic
custom_dir: docs/overrides
icon:
edit: material/pencil
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
primary: indigo
accent: indigo
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
primary: indigo
accent: indigo
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
primary: indigo
accent: indigo
features:
- content.action.edit
- content.code.copy
#- content.tabs.link
- navigation.expand
- navigation.indexes
#- navigation.instant
- navigation.sections
- navigation.tabs
#- navigation.tabs.sticky
- navigation.top
- navigation.tracking
#- toc.follow
#- toc.integrate
- navigation.footer
- search.suggest
favicon: favicon.png
logo: logo.svg
# Plugins https://zensical.org/compatibility/plugins/
# 2026-05-21, the only supported plugin is search
plugins:
- search
- privacy:
enabled: !ENV [ READTHEDOCS, '' ]
- redirects:
redirect_maps:
- minify:
minify_html: true
- git-revision-date-localized:
fallback_to_build_date: true
# Files in not_in_nav are part of the repo but intentionally excluded from the
# docs navigation (e.g. temporary developer guides used by automation tools).
not_in_nav: |
developers/tmp/*
# Validation
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
# Customization
extra:
social:
- icon: fontawesome/brands/discord
link: https://ddev.com/s/discord
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/@DDEVFoundation
- icon: fontawesome/brands/bluesky
link: https://bsky.app/profile/ddev.bsky.social
- icon: fontawesome/brands/mastodon
link: https://fosstodon.org/@ddev
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/ddev-foundation
- icon: fontawesome/brands/github
link: https://github.com/ddev/ddev
generator: false
version: !ENV [ READTHEDOCS_VERSION_NAME, 'stable' ]
canonical_url: !ENV [ READTHEDOCS_CANONICAL_URL, '' ]
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
toc_depth: 2
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:zensical.extensions.emoji.twemoji
emoji_generator: !!python/name:zensical.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
extend_pygments_lang:
- name: php
lang: php
options:
startinline: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: ddev
repo: ddev
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- smarty
nav:
- 'Start!':
- index.md
- 'Installing':
- users/install/index.md
- users/install/docker-installation.md
- users/install/ddev-installation.md
- 'Configuring Browsers': users/install/configuring-browsers.md
- 'Upgrading': users/install/ddev-upgrade.md
- 'Getting Started':
- users/project.md
- users/quickstart.md
- users/install/performance.md
- users/install/shell-completion.md
- users/install/phpstorm.md
- 'Usage':
- 'Common Tasks':
- users/usage/index.md
- users/usage/cli.md
- users/usage/database-management.md
- users/usage/cms-settings.md
- users/usage/vite.md
- users/usage/managing-projects.md
- users/usage/troubleshooting.md
- users/usage/offline.md
- 'Reference':
- users/usage/architecture.md
- users/usage/commands.md
- users/usage/developer-tools.md
- users/usage/diagnostics.md
- users/usage/networking.md
- 'Uninstalling': users/usage/uninstall.md
- 'Getting Help':
- users/usage/faq.md
- users/support.md
- users/code-of-conduct.md
- 'Configuration':
- users/configuration/config.md
- users/extend/database-types.md
- users/configuration/environment-variables.md
- users/configuration/hooks.md
- users/extend/additional-hostnames.md
- 'Extending':
- users/extend/customization-extendibility.md
- users/extend/using-add-ons.md
- users/extend/creating-add-ons.md
- users/extend/custom-docker-services.md
- users/extend/additional-services.md
- users/extend/custom-compose-files.md
- users/extend/customizing-images.md
- users/extend/custom-commands.md
- users/extend/in-container-configuration.md
- users/extend/custom-tls-certificates.md
- users/extend/traefik-router.md
- users/extend/share-providers.md
- 'Debugging & Profiling':
- users/debugging-profiling/step-debugging.md
- 'Profiling':
- users/debugging-profiling/blackfire-profiling.md
- users/debugging-profiling/xhprof-profiling.md
- users/debugging-profiling/xdebug-profiling.md
- 'Hosting & Deployment':
- users/topics/index.md
- users/topics/sharing.md
- users/topics/hosting.md
- users/topics/remote-docker.md
- 'Hosting Provider Integrations':
- users/providers/index.md
- 'Acquia': users/providers/acquia.md
- 'Lagoon': users/providers/lagoon.md
- 'Pantheon': users/providers/pantheon.md
- 'Upsun Fixed/Platform.sh': users/providers/platform.md
- 'Upsun Flex': users/providers/upsun.md
- 'Development':
- developers/index.md
- developers/building-contributing.md
- developers/buildkite-testmachine-setup.md
- developers/github-selfhosted-setup.md
- developers/project-types.md
- developers/quickstart-maintenance.md
- developers/release-management.md
- developers/brand-guide.md
- developers/testing-docs.md
- developers/writing-style-guide.md
- developers/remote-config.md
- developers/maintainers.md
- developers/secret-management.md
- developers/http-proxy-test-environments.md
- developers/network-test-environments.md
- developers/network-bandwidth-testing.md
- 'Blog': https://ddev.com/blog
- 'Add-on Registry': https://addons.ddev.com