-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
157 lines (149 loc) · 4.43 KB
/
mkdocs.yml
File metadata and controls
157 lines (149 loc) · 4.43 KB
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
site_name: devslab-kit
site_url: https://devslab-kit.devslab.kr/
site_description: >-
Spring Boot 4 platform starter — authentication, RBAC + groups + ABAC,
multi-tenancy, dynamic menus, audit logging, and an admin REST API.
site_author: devslab
copyright: Copyright © 2026 devslab. Licensed under Apache 2.0.
repo_url: https://github.com/devslab-kr/devslab-kit
repo_name: devslab-kr/devslab-kit
edit_uri: edit/main/docs/
docs_dir: docs
theme:
name: material
language: en
logo: assets/logo.svg
favicon: assets/logo.svg
features:
- navigation.tabs
- navigation.sections
- navigation.indexes
- navigation.top
- navigation.tracking
- toc.follow
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.action.edit
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/weather-night
name: Switch to light mode
icon:
repo: fontawesome/brands/github
edit: material/pencil
extra_css:
- stylesheets/extra.css
plugins:
- search
- i18n:
docs_structure: suffix
languages:
- locale: en
default: true
name: English
build: true
- locale: ko
name: 한국어
build: true
nav_translations:
Home: 홈
Getting Started: 시작하기
Installation: 설치
Quick Start: 빠른 시작
Tutorial (zero to running): 튜토리얼 (처음부터 끝까지)
Guides: 가이드
Multi-tenancy: 멀티테넌시
Access (RBAC + ABAC): 접근 제어 (RBAC + ABAC)
Dynamic Menus: 동적 메뉴
Audit Logging: 감사 로깅
Caching: 캐시
First-admin Bootstrap: 최초 관리자 부트스트랩
Config Sync: 설정 동기화
Admin Console: 관리자 콘솔
Reference: 레퍼런스
Configuration: 설정
Admin REST API: 관리자 REST API
Decisions: 결정 기록
Changelog: 변경 이력
Roadmap: 로드맵
markdown_extensions:
- admonition
- attr_list
- md_in_html
- footnotes
- tables
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path:
- .
check_paths: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: true
toc_depth: 3
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/devslab-kr/devslab-kit
- icon: fontawesome/brands/java
link: https://central.sonatype.com/artifact/kr.devslab/devslab-kit-spring-boot-starter
alternate:
- name: English
link: /
lang: en
- name: 한국어
link: /ko/
lang: ko
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- Tutorial (zero to running): getting-started/tutorial.md
- Guides:
- Multi-tenancy: guides/tenancy.md
- Access (RBAC + ABAC): guides/access.md
- Dynamic Menus: guides/menus.md
- Audit Logging: guides/audit.md
- Caching: guides/cache.md
- First-admin Bootstrap: guides/bootstrap.md
- Config Sync: guides/config-sync.md
- Admin Console: guides/admin-console.md
- Reference:
- Configuration: reference/configuration.md
- Admin REST API: reference/admin-api.md
- Decisions:
- "ADR 0001 — First-admin bootstrap": adr/0001-bootstrap-admin.md
- "ADR 0002 — Pluggable cache": adr/0002-distributed-cache.md
- "ADR 0003 — Config sync across environments": adr/0003-config-sync.md
- Changelog: changelog.md
- Roadmap: roadmap.md