-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathmkdocs.yml
More file actions
142 lines (131 loc) · 4.11 KB
/
mkdocs.yml
File metadata and controls
142 lines (131 loc) · 4.11 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
site_name: Cadwyn
# Repository settings
repo_name: Cadwyn
repo_url: https://github.com/zmievsa/cadwyn
plugins:
- mike
- search
- mkdocs-simple-hooks:
hooks:
on_pre_build: "docs.plugin:on_pre_build"
extra_css:
- stylesheets/extra.css
markdown_extensions:
toc:
permalink: true
markdown.extensions.codehilite:
guess_lang: false
admonition: null
codehilite: null
extra:
pymdownx.highlight:
pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ""
pymdownx.tabbed:
alternate_style: true
# pymdownx blocks
pymdownx.blocks.admonition:
types:
- tip
pymdownx.blocks.details:
pymdownx.blocks.tab:
alternate_style: True
abbr:
footnotes:
tables:
attr_list: null
md_in_html: null
mdx_include:
markdown_include_variants:
theme:
name: "material"
logo: img/logos/cadwyn_icon_transparent.svg
favicon: img/logos/cadwyn_icon_transparent.svg
features:
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.path
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
- content.footnote.tooltips
- content.code.select
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
font:
text: Roboto
code: Roboto Mono
nav:
- "Home":
- "index.md"
- "Quickstart":
- "Setup": "quickstart/setup.md"
- "Tutorial": "quickstart/tutorial.md"
- "How to...":
- "how_to/index.md"
- "Version with paths and numbers instead of headers and dates": "how_to/version_with_paths_and_numbers_instead_of_headers_and_dates.md"
- "Change OpenAPI Schemas":
- "Add a field": "how_to/change_openapi_schemas/add_field.md"
- "Remove a field": "how_to/change_openapi_schemas/remove_field.md"
- "Rename a field": "how_to/change_openapi_schemas/rename_a_field_in_schema.md"
- "Change field type": "how_to/change_openapi_schemas/change_field_type.md"
- "Change field constraints or validators": "how_to/change_openapi_schemas/changing_constraints.md"
- "Change a schema that is not used in any endpoint": "how_to/change_openapi_schemas/change_schema_without_endpoint.md"
- "Change business logic": "how_to/change_business_logic/index.md"
- "Change endpoints": "how_to/change_endpoints/index.md"
- "Concepts":
- "concepts/index.md"
- "Methodology": "concepts/methodology.md"
- "Beware of data versioning": "concepts/beware_of_data_versioning.md"
- "Main App": "concepts/main_app.md"
- "CLI": "concepts/cli.md"
- "Schema generation": "concepts/schema_generation.md"
- "Version Changes": "concepts/version_changes.md"
- "Endpoint migrations": "concepts/endpoint_migrations.md"
- "Enum migrations": "concepts/enum_migrations.md"
- "Schema migrations": "concepts/schema_migrations.md"
- "API Version parameter": "concepts/api_version_parameter.md"
- "Changelogs": "concepts/changelogs.md"
- "Testing": concepts/testing.md
- "Contributing": "home/CONTRIBUTING.md"
- "Changelog": "home/CHANGELOG.md"
- "Theory":
- "How we got here": "theory/how_we_got_here.md"
- "References": "theory/references.md"
- "How to build a versioning framework": "theory/how_to_build_versioning_framework.md"
watch:
- docs
- CHANGELOG.md
- mkdocs.yml