-
Notifications
You must be signed in to change notification settings - Fork 13
/
mkdocs.yml
98 lines (92 loc) · 2.68 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
# Information
site_name: Yokai
site_url: https://ankorstore.github.io/yokai
site_description: >-
Yokai: a simple, modular, and observable Go framework for backend applications.
# Repository
repo_name: ankorstore/yokai
repo_url: https://github.com/ankorstore/yokai
# Plugins
plugins:
- search
- glightbox:
skip_classes:
- skip-glightbox
# Theme
theme:
name: material
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: blue
toggle:
icon: material/toggle-switch
name: Switch to light mode
icon:
logo: material/book-open-page-variant-outline
repo: material/github
favicon: 'assets/images/favicon.ico'
features:
- content.code.copy
- content.tabs.link
- navigation.tracking
- navigation.sections
- navigation.top
- navigation.expand
- navigation.footer
- search.highlight
# Extensions
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- tables
# Extra
extra_css:
- 'assets/stylesheets/extra.css'
# Pages tree
nav:
- "Overview": 'index.md'
- "Getting started":
- "gRPC application": getting-started/grpc-application.md
- "HTTP application": getting-started/http-application.md
- "Worker application": getting-started/worker-application.md
- "Tutorials":
- "gRPC application": tutorials/grpc-application.md
- "HTTP application": tutorials/http-application.md
- "Worker application": tutorials/worker-application.md
- "Demos":
- "gRPC application": demos/grpc-application.md
- "HTTP application": demos/http-application.md
- "Worker application": demos/worker-application.md
- "Modules":
- "Core": modules/fxcore.md
- "Config": modules/fxconfig.md
- "Cron": modules/fxcron.md
- "Generate": modules/fxgenerate.md
- "gRPC Server": modules/fxgrpcserver.md
- "Health Check": modules/fxhealthcheck.md
- "HTTP Client": modules/fxhttpclient.md
- "HTTP Server": modules/fxhttpserver.md
- "Log": modules/fxlog.md
- "Metrics": modules/fxmetrics.md
- "ORM": modules/fxorm.md
- "SQL": modules/fxsql.md
- "Trace": modules/fxtrace.md
- "Worker": modules/fxworker.md