-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
88 lines (88 loc) Β· 2.45 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
docs_dir: "src/docs"
site_name: "Hello Cloud"
site_url: "https://www.ourchitecture.io/hello-cloud/"
repo_url: "https://github.com/ourchitecture/hello-cloud/#readme"
repo_name: ourchitecture/hello-cloud
edit_uri: "edit/main/src/docs"
site_author: "Ourchitecture"
copyright: "Creative Commons Zero v1.0 Universal"
theme:
name: "material"
custom_dir: "./src/mkdocs/overrides"
logo: "img/logo.png"
favicon: "img/favicon.png"
icon:
repo: fontawesome/brands/github
palette:
- scheme: "slate"
primary: "blue"
accent: "deep orange"
toggle:
icon: "material/weather-sunny"
name: "Switch to light mode"
- scheme: "default"
primary: "blue grey"
accent: "light blue"
toggle:
icon: "material/weather-night"
name: "Switch to dark mode"
features:
- "header.autohide"
- "navigation.indexes"
- "navigation.tabs"
- "navigation.tabs.sticky"
- "navigation.top"
- "navigation.sections"
- "toc.integrate"
nav:
- "Home": "index.md"
- "Clouds": "clouds.md"
- "Comparisons": "compare.md"
- "Projects":
- ".NET": "./services/dotnet.md"
- "Java with SpringBoot": "./services/java-springboot.md"
- "Kotlin with SpringBoot": "./services/kotlin-springboot.md"
- "NodeJS with ExpressJS": "./services/nodejs-expressjs.md"
- "DevOps": "devops.md"
- "Roadmap": "roadmap.md"
- "Contribute": "contribute.md"
- "Comments": "comments.md"
- "License": "license.md"
extra:
social:
- icon: "fontawesome/brands/github"
link: "https://github.com/ourchitecture/hello-cloud/"
name: "GitHub"
disqus: "hello-cloud"
analytics:
provider: "google"
property: "G-3L61DB7YP7"
generator: false
extra_css:
- "assets/stylesheets/extra.css"
extra_javascript:
- "https://unpkg.com/[email protected]/dist/mermaid.min.js"
- "assets/scripts/extra.js"
markdown_extensions:
- "admonition"
- "attr_list"
- "def_list"
- "md_in_html"
- "meta"
- "pymdownx.details"
- "pymdownx.emoji":
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- "pymdownx.highlight"
- "pymdownx.inlinehilite"
- "pymdownx.keys"
- "pymdownx.magiclink"
- "pymdownx.snippets"
- "pymdownx.superfences":
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- "pymdownx.tasklist":
custom_checkbox: true
- "tables"