-
Notifications
You must be signed in to change notification settings - Fork 32
/
mkdocs.yml
53 lines (48 loc) · 1.17 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
site_name: Bali
site_description: Simplify Cloud Native Microservices development base on FastAPI and gRPC.
site_url: https://bali-framework.github.io/bali/
theme:
name: material
palette:
- scheme: 'default'
media: '(prefers-color-scheme: light)'
toggle:
icon: 'material/lightbulb'
name: "Switch to dark mode"
- scheme: 'slate'
media: '(prefers-color-scheme: dark)'
primary: 'blue'
toggle:
icon: 'material/lightbulb-outline'
name: 'Switch to light mode'
repo_name: bali-framework/bali
repo_url: https://github.com/bali-framework/bali
edit_uri: ""
nav:
- Getting Started:
- Introduction: index.md
- Quick Start: quick-start.md
- Application: application.md
- Config: config.md
- Database: database.md
- Cache: cache.md
- Resource: resource.md
- Event: event.md
- Schema: schema.md
- Utility: utility.md
- Testing: testing.md
- bali-cli: bali-cli.md
- Release Notes: release-notes.md
markdown_extensions:
- mkautodoc
- admonition
- pymdownx.highlight
- pymdownx.superfences
extra:
alternate:
- name: English
link: /bali/
lang: en
- name: 简体中文
link: /bali/zh/
lang: zh