forked from zmievsa/cadwyn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
115 lines (106 loc) · 3.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
site_name: Cadwyn
# Repository settings
repo_name: Cadwyn
repo_url: https://github.com/zmievsa/cadwyn
plugins:
- search
- mkdocs-simple-hooks:
hooks:
on_pre_build: "docs.plugin:on_pre_build"
markdown_extensions:
toc:
permalink: true
markdown.extensions.codehilite:
guess_lang: false
admonition: null
codehilite: null
extra: null
pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ''
pymdownx.tabbed:
alternate_style: true
attr_list: null
md_in_html: null
theme:
name: 'material'
features:
- search.suggest
- search.highlight
- content.tabs.link
- navigation.indexes
- navigation.tracking
- navigation.tabs
- navigation.path
- content.tooltips
- content.code.annotate
- content.code.copy
- 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"
- "Contributing": "home/CONTRIBUTING.md"
- "Changelog": "home/CHANGELOG.md"
- "Quickstart":
- "quickstart/index.md"
- "Setup": "quickstart/setup.md"
- "Making the breaking change": "quickstart/making_the_breaking_change.md"
- "Going back in time before the breaking change": "quickstart/going_back_in_time_before_the_breaking_change.md"
- "How to...":
- "how_to/index.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 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"
- "Service structure": "concepts/service_structure.md"
- "Beware of data versioning": "concepts/beware_of_data_versioning.md"
- "Main App": "concepts/main_app.md"
- "CLI": "concepts/cli.md"
- "Code generation": "concepts/code_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"
- "Module migrations": "concepts/module_migrations.md"
- "API Version header and context variables": "concepts/api_version_header_and_context_variables.md"
- "Testing": concepts/testing.md
- "Theory":
- "How we got here": "theory/how_we_got_here.md"
- "Literature": "theory/literature.md"
- "Design decisions": "theory/design_decisions.md"
- "How to build a versioning framework": "theory/how_to_build_versioning_framework.md"
watch:
- docs
- CHANGELOG.md
- mkdocs.yml