-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
63 lines (57 loc) · 2.08 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
# Basic information about the project
site_name: Kraken Web UI Documentation
site_description: Documentation for the Kraken Web UI project, built with Next.js.
# Customizing the "Material" theme
theme:
name: material
features:
- navigation.tabs # Tabs for top-level sections
- navigation.sections # Sections in the sidebar
- navigation.expand # Expand all navigation items by default
- navigation.top # "Back to top" button
- search.highlight # Highlight search results
- content.code.copy # "Copy code" button for code blocks
- content.code.annotate # Annotations for code comments
- toc.integrate # Integrate the table of contents into the content
palette:
- scheme: default # Light theme by default
primary: ultramarine # Primary color ("blue" is better)
accent: light blue # Accent color
toggle:
icon: material/weather-night
name: "Switch to dark mode"
- scheme: slate # Dark theme
primary: ultramarine # Primary color ("blue" is better)
accent: light blue # Accent color
toggle:
icon: material/weather-sunny
name: "Switch to light mode"
#️ Navigation
nav:
- Overview:
- Documentation Overview: index.md
- Installation: overview/installation.md
- Project Structure: overview/project_structure.md
- User Guide:
- Usage Instructions: user_guide/usage.md
- Troubleshooting: user_guide/troubleshooting.md
- Developer Guide:
- Application Architecture: developer_guide/architecture.md
- UI Components: developer_guide/components.md
- DevOps:
- CI/CD Process: devops/ci_cd.md
- Docker Setup: devops/docker.md
- License: license.md
# Localization and Headers
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/TU-Darmstadt-APQ/kraken_webui
generator: false # Disable "Made with MkDocs" in bottom
copyright:
text: "© 2025 Kraken Web UI Documentation"
repo_url: https://github.com/TU-Darmstadt-APQ/kraken_webui
repo_name: TU-Darmstadt-APQ/kraken_webui
# Deployment Settings
deploy:
github_pages: true