-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
143 lines (137 loc) · 3.94 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
site_name: "Matchbox"
site_description: "Documentation for Matchbox"
repo_url: "https://github.com/uktrade/matchbox"
repo_name: "uktrade/matchbox"
nav:
- Home:
- Welcome: index.md
- Use cases: use-cases.md
- Client:
- Installation: client/install.md
- Retrieve: client/query-data.md
- Link and deduplicate: client/link-data.md
- API:
- Overview: api/client/index.md
- Server:
- Install: server/install.md
- Deploy: server/deploy.md
- API:
- Overview: api/server/index.md
- API reference:
- Client:
- Overview: api/client/index.md
- Clean: api/client/clean.md
- Helpers: api/client/helpers.md
- Models: api/client/models.md
- Results: api/client/results.md
- Visualisation: api/client/visualisation.md
- Server:
- Overview: api/server/index.md
- API: api/server/api.md
- Backends:
- PostgreSQL: api/server/backends/postgresql.md
- Common:
- Overview: api/common/index.md
- Database: api/common/db.md
- Exceptions: api/common/exceptions.md
- Factories: api/common/factories.md
- Graph: api/common/graph.md
- Hashing: api/common/hash.md
- Logging: api/common/logging.md
- Transform: api/common/transform.md
- Contributing:
- Guidelines: contributing.md
theme:
name: material
logo: assets/matchbox-light.png
favicon: assets/matchbox-dark.png
features:
- content.code.copy
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.top
- search.highlight
- search.suggest
- toc.follow
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/weather-night
name: Switch to system preference
markdown_extensions:
- attr_list
- admonition
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
plugins:
- autorefs
- search
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://typing-extensions.readthedocs.io/en/latest/objects.inv
paths: [src]
options:
docstring_options:
ignore_init_summary: true
preload_modules: [matchbox]
docstring_style: google
docstring_section_style: list
heading_level: 2
inherited_members: true
merge_init_into_class: true
parameter_headings: true
separate_signature: true
show_bases: false
show_inheritance_diagram: true
show_root_heading: true
show_root_full_path: false
show_source: false
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
summary: true
copyright: >
<a href="https://www.flaticon.com/free-icons/ignite" title="ignite icons">Ignite icons created by edt.im - Flaticon</a>
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/uktrade/matchbox
generator: false