-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
167 lines (160 loc) · 4.45 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
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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: DDEV Docs
# todo: Make sure to set this to the correct one; otherwise it breaks 404 page
site_url: https://ddev.readthedocs.io/en/latest/
repo_url: https://github.com/drud/ddev
repo_name: drud/ddev
edit_uri: blob/master/docs/content
copyright: Localdev Foundation
extra_javascript:
- 'assets/jquery-3.5.1.min.js'
#- 'assets/extra.js'
extra_css:
- 'assets/extra.css'
site_author: Localdev Foundation
site_description: >-
Do local website development on your computer or in the cloud with DDEV.
docs_dir: docs/content
# Configuration
theme:
name: material
palette:
- scheme: default
primary: light-blue
accent: indigo
features:
# - content.tabs.link
- navigation.expand
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
# - navigation.tracking
# - toc.follow
- toc.integrate
favicon: favicon.png
# readthedocs doesn't seem to do logo css right
# logo: /Logo_w_text.svg
# Plugins
plugins:
- search
- redirects:
redirect_maps:
- minify:
minify_html: true
- git-revision-date-localized:
# enable_creation_date: true
#- git-committers:
# repository: https://github.com/drud/ddev
# token: !ENV GH_TOKEN
# Customization
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/drud/ddev
- icon: fontawesome/brands/discord
link: https://discord.gg/hCZFfAMc5k
- icon: fontawesome/brands/stack-overflow
link: https://stackoverflow.com/tags/ddev
- icon: fontawesome/brands/twitter
link: https://twitter.com/search?q=%23ddev&src=unknown&f=live
generator: false
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: drud
repo: ddev
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
nav:
- "Start!":
- index.md
- 'Installing':
- users/install/index.md
- users/install/docker-installation.md
- users/install/ddev-installation.md
- users/install/performance.md
- users/install/shell-completion.md
- users/quickstart.md
- users/support.md
- 'Basics':
- users/basics/index.md
- users/basics/how-ddev-works.md
- users/basics/cli-usage.md
- users/basics/database_management.md
- users/basics/troubleshooting.md
- users/basics/faq.md
- users/basics/developer-tools.md
- users/basics/uninstall.md
- 'Configuration':
- users/extend/database_types.md
- users/configuration/hooks.md
- users/extend/additional-hostnames.md
- users/configuration/config_yaml.md
- users/configuration/experimental.md
- 'Extending':
- users/extend/customization-extendibility.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
- '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 integration':
- users/providers/index.md
- users/providers/acquia.md
- users/providers/pantheon.md
- users/providers/platform.md
- 'Guides':
- users/topics/phpstorm.md
- users/topics/sharing.md
- users/topics/webserver.md
- users/topics/whats_in_ddev_dir.md
- users/topics/cms_specific_help.md
- 'Details':
- users/details/offline-usage.md
- users/details/opting-in.md
- users/details/alternate-uses.md
- 'Developers':
- developers/index.md
- developers/building-contributing.md
- developers/buildkite-testmachine-setup.md
- developers/github-selfhosted-setup.md
- developers/project-types.md
- developers/release-management.md
- developers/styleguide.md
- developers/testing-docs.md