-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
72 lines (67 loc) · 2.01 KB
/
mkdocs.yml
File metadata and controls
72 lines (67 loc) · 2.01 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
site_name: Micronaut by Example
repo_url: https://github.com/hantsy/micronaut-sandbox
repo_name: hantsy/micronaut-sandbox
theme:
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: pink
accent: pink
toggle:
icon: material/toggle-switch
name: Switch to light mode
name: material
features:
- search.suggest
- navigation.expand
- navigation.indexes
# - toc.integrate
icon:
repo: fontawesome/brands/git-alt
copyright: Copyright ©2022 Hantsy
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/hantsy
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/hantsy
- icon: fontawesome/brands/medium
link: https://medium.com/@hantsy
- icon: fontawesome/brands/github
link: https://github.com/hantsy
markdown_extensions:
- meta
- toc:
toc_depth: 3
permalink: true
plugins:
- search
- git-revision-date
nav:
- Preface:
- index.md
- Introduction to Mcironaut:
- intro/index.md
- "What is Micronaut?": intro/what.md
- "Why Micronaut?": intro/why
- Getting Started:
- gs/index.md
- Prerequisites: gs/prerequisites.md
- Generating Project Skeleton: gs/gen.md
- Understanding Dependency Injection: gs/di.md
- Building & Running Application: gs/build.md
- "Example: Java + Micronaut Data JPA": gs/gs-rest.md
- "Example: Kotlin + Micronaut Data JDBC": gs/jdbc-kotlin.md
- "Example: Kotlin Coroutine + Micronaut Data R2DBC": gs/r2dbc-kotlin-co.md
- "Example: Java + Micronaut Mongo Reactive": gs/mongo-reactive.md
- "Example: Data Access with Micronaut Jakarta Data": gs/jakarta-data.md
- Testing:
- test/index.md
- JUnit: test/junit.md
- KoTest: test/kotest.md
- Spock: test/spock.md