-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzensical.toml
More file actions
109 lines (89 loc) · 2.94 KB
/
Copy pathzensical.toml
File metadata and controls
109 lines (89 loc) · 2.94 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
[project]
site_name = "Fast Healthchecks"
site_description = "Health checks for the most popular ASGI frameworks"
site_url = "https://zylvext.github.io/fast-healthchecks/"
site_author = "Vladislav Shepilov"
copyright = "Copyright © 2026 Vladislav Shepilov"
nav = [
{"Home" = "index.md"},
{"Installation" = "installation.md"},
{"Usage" = "usage.md"},
{"Lifecycle and shutdown" = "lifecycle.md"},
{"Probe options" = "probe-options.md"},
{"Running probes without ASGI" = "run-probe.md"},
{"Configuration" = "configuration.md"},
{"URL check and SSRF protection" = "ssrf.md"},
{"DSN formats" = "dsn-formats.md"},
{"API Reference" = "api.md"},
{"Changelog" = "changelog.md"},
{"Style guide" = "style-guide.md"},
{"Contributing" = "contributing.md"},
{"Security" = "security.md"},
{"Decisions" = [
{"Index" = "decisions/README.md"},
{"ADR 001 - Check contract" = "decisions/001-check-contract.md"}
]}
]
[project.repository]
name = "fast-healthchecks"
url = "https://github.com/ZYLVEXT/fast-healthchecks"
edit_uri = "edit/main/docs/"
[project.theme]
variant = "classic"
favicon = "img/favicon.ico"
logo = "img/green.svg"
icon.repo = "fontawesome/brands/github"
language = "en"
features = [
"search.suggest",
"search.highlight",
"content.tabs.link",
"content.code.copy",
"content.action.edit",
"content.action.view",
"navigation.tracking",
"navigation.top"
]
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
scheme = "slate"
primary = "green"
toggle.icon = "material/brightness-7"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
scheme = "default"
primary = "green"
toggle.icon = "material/brightness-4"
toggle.name = "Switch to system preference"
[project.markdown_extensions.toc]
permalink = true
[project.markdown_extensions.attr_list]
[project.markdown_extensions.pymdownx.emoji]
emoji_index = "zensical.extensions.emoji.twemoji"
emoji_generator = "zensical.extensions.emoji.to_svg"
[project.markdown_extensions.pymdownx.highlight]
anchor_linenums = true
pygments_lang_class = true
line_spans = "__span"
[project.markdown_extensions.pymdownx.inlinehilite]
[project.markdown_extensions.pymdownx.snippets]
base_path = ["."]
[project.markdown_extensions.pymdownx.superfences]
[project.markdown_extensions.admonition]
[project.markdown_extensions.pymdownx.details]
[project.markdown_extensions.pymdownx.tabbed]
alternate_style = true
[project.markdown_extensions.pymdownx.caret]
[project.markdown_extensions.pymdownx.mark]
[project.markdown_extensions.pymdownx.tilde]
[project.markdown_extensions.pymdownx.keys]
[project.markdown_extensions.pymdownx.tasklist]
custom_checkbox = true
[project.markdown_extensions.pymdownx.arithmatex]
generic = true
[project.plugins.mkdocstrings.handlers.python]
paths = ["."]
[project.plugins.mkdocstrings.handlers.python.options]
docstring_style = "google"
show_source = true