-
Notifications
You must be signed in to change notification settings - Fork 29
/
mkdocs.yml
82 lines (75 loc) · 2.12 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
site_name: Wordcab Transcribe
site_url: https://github.com/Wordcab/wordcab-transcribe
site_author: Wordcab
site_description: 💬 ASR FastAPI server using faster-whisper and Multi-Scale Auto-Tuning Spectral Clustering for diarization.
repo_name: Wordcab/wordcab-transcribe
repo_url: https://github.com/Wordcab/wordcab-transcribe
copyright: Copyright (c) 2023-present Wordcab <[email protected]>
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: amber
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: amber
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
icon:
logo: material/microphone-message
features:
- content.tabs.link
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
plugins:
- search:
- git-revision-date-localized:
type: timeago
enable_creation_date: true
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_root_full_path: false
show_root_heading: false
show_root_toc_entry: false
show_symbol_type_toc: true
extra:
social:
- icon: fontawesome/brands/python
link: https://pypi.org/project/wordcab
- icon: fontawesome/brands/github
link: https://github.com/Wordcab
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/wordcab
nav:
- 👋 Getting Started: index.md
- 📖 Usage:
- ENV variables: usage/env.md
- ASR Engines: usage/asr.md
- Launch: usage/launch.md
- 📚 Reference:
- Config: reference/config.md
- Services: reference/services.md
- Schemas: reference/schemas.md
- 🚀 Contributing: contributing.md
- 📝 License: license.md