-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
61 lines (56 loc) · 1.34 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
site_name: KWAI
site_description: kwai, the sports club management system
site_dir: ./_site
nav:
- Intro: 'index.md'
- Backend: '!include ./backend/mkdocs.yml'
- Frontend: '!include ./frontend/mkdocs.yml'
theme:
name: "material"
custom_dir: docs/overrides
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
accent: blue
toggle:
icon: material/lightbulb
name: Switch to light mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
accent: blue
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
repo_name: fbraem/kwai
repo_url: https://github.com/fbraem/kwai
extra_css:
- stylesheets/extra.css
markdown_extensions:
- toc:
permalink: true
toc_depth: 4
- admonition
- codehilite
- attr_list
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
plugins:
- monorepo
- autorefs:
resolve_closest: true
- mkdocstrings:
handlers:
python:
paths: ['./backend/src']
options:
show_root_heading: true
show_source: false
docstring_style: google
show_root_toc_entry: true
extensions:
- griffe_fastapi
watch:
- backend/src