forked from arch-zen/grus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
180 lines (172 loc) · 5.22 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# Project information
site_name: Java Guide
site_url: https://java.guide.wuxingdev.cn/
site_author: August Zhou
site_description: >-
Create a static site from a set of Markdown files to host the
documentation of Java
# Repository
repo_name: java/framework/grus
repo_url: https://gitlab.wuxingdev.cn/java/framework/grus
edit_uri: ""
# Copyright
copyright: Copyright © 2016 - 2021 guanaitong
theme:
name: material
language: zh
logo: assets/logo.png
favicon: assets/favicon.ico
# Static files
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
features:
- content.code.annotate
# - content.tabs.link
# - header.autohide
# - navigation.expand
- navigation.indexes
# - navigation.instant
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
# - toc.integrate
-
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: red
accent: red
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
# Plugins
plugins:
- search
- minify:
minify_html: true
# Extensions
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- 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:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid-experimental
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
nav:
- 首页:
- index.md
- 序言:
- 开发管理: prepare/contribute/manage.md
- 环境安装:
- Java安装: prepare/develop-env/java-install.md
- Maven安装: prepare/develop-env/maven-install.md
- 规范:
- Maven规范: prepare/specs/maven.md
- 项目规范: prepare/specs/app-framework-spec.md
- 连接池规范: prepare/specs/jdbc-pool-config.md
- 日志规范: prepare/specs/app-log.md
- 技巧:
- IDEA使用技巧: prepare/skill/LearningIdea.md
- Sonarlint配置指南: prepare/skill/sonar.md
- Checksyle配置: prepare/skill/checkstyle.md
- 框架:
- 简介: framework/introduction/origin.md
- 项目结构: framework/introduction/project-structure.md
- Starter模块: framework/introduction/project-starter.md
- Autoconfigure模块: framework/introduction/autoconfigure.md
- Condition条件注解: framework/introduction/condition.md
- 配置文件: framework/introduction/config.md
- Gconf:
- framework/gconf/index.md
- 巨灵神规范:
- framework/api/index.md
- feign: framework/api/grus-feign-use.md
- 使用指南: framework/api/grus-feign-guide.md
- 最佳实践: framework/api/grus-feign-best-practice.md
- Feign协议升级: framework/api/grus-feign-contract.md
- data:
- framework/data/index.md
- Mybatis分页插件: framework/data/mybatis-pagehelper.md
- Mybatis增加: framework/data/mybatis-enhance.md
- redis:
- framework/redis/index.md
- zookeeper:
- framework/zk/index.md
- kafka:
- framework/kafka/index.md
- web:
- framework/web/index.md
- Validator模块: framework/web/grus-validator.md
- Swagger使用说明: framework/web/grus-swagger.md
- Freemarker使用说明: framework/web/grus-freemarker.md
- Velocity使用说明: framework/web/grus-velocity.md
- job:
- framework/job/index.md
- 单元测试:
- framework/test/index.md
- 微服务流量控制:
- framework/limit/index.md
- 分布式session:
- framework/session/index.md
- 分布式存储gfs:
- framework/gfs/index.md
- gfs-client使用说明: framework/gfs/gfs-sdk.md
- frigate消息:
- framework/frigate/index.md
- gfs-client使用说明: framework/frigate/grus-frigate-message-handle.md
- others:
- framework/others/index.md
- bean复制工具: framework/others/grus-core.md
- JSON使用说明: framework/others/grus-json.md
- Java17升级指南: framework/others/grus-17.md
- 其他:
- 应用开发指南: others/develop-guide.md
- 安全基础: others/security-base.md
- 短链接: others/short-url.md