-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
101 lines (100 loc) · 4.27 KB
/
Copy pathmkdocs.yml
File metadata and controls
101 lines (100 loc) · 4.27 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
site_name: Hyac Docs
theme:
name: material
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.sections
- toc.integrate
# - navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
icon:
repo: fontawesome/brands/github
favicon: favicon.ico
language: zh
repo_url: https://github.com/Pidbid/hyac
repo_name: Pidbid/hyac
plugins:
- search
- mermaid2
- i18n:
docs_structure: folder
languages:
- locale: zh
name: 中文
default: true
build: true
nav:
- '首页': 'index.md'
- '介绍':
- 'Hyac 是什么?': 'introduction/what-is-hyac.md'
- '核心概念': 'introduction/core-concepts.md'
- '架构': 'introduction/architecture.md'
- '快速开始':
- '部署': 'getting-started/deployment.md'
- '函数介绍':
- '你的第一个函数': 'function-introduction/first-function.md'
- 'API 函数': 'function-introduction/api-function.md'
- '公共函数': 'function-introduction/common-function.md'
- '使用环境变量': 'function-introduction/using-environment-variables.md'
- '链接数据库': 'function-introduction/database-connection.md'
- '链接对象存储': 'function-introduction/minio-connection.md'
- '用户指南':
- '仪表盘': 'user-guide/dashboard.md'
- '应用管理': 'user-guide/application-management.md'
- '函数管理': 'user-guide/function-management.md'
- '数据库访问': 'user-guide/database-access.md'
- '对象存储': 'user-guide/storage-access.md'
- '用户设置': 'user-guide/user-settings.md'
- '开发':
- '开发环境': 'development/dev-environment.md'
- '项目结构': 'development/project-structure.md'
- '贡献': 'development/contributing.md'
- 'API 参考':
- '认证': 'api-reference/authentication.md'
- '函数 API': 'api-reference/functions-api.md'
- '应用 API': 'api-reference/applications-api.md'
- locale: en
name: English
build: true
nav:
- 'Home': 'index.md'
- 'Introduction':
- 'What is Hyac?': 'introduction/what-is-hyac.md'
- 'Core Concepts': 'introduction/core-concepts.md'
- 'Architecture': 'introduction/architecture.md'
- 'Getting Started':
- 'Deployment': 'getting-started/deployment.md'
- 'Function Introduction':
- 'Your First Function': 'function-introduction/first-function.md'
- 'API Function': 'function-introduction/api-function.md'
- 'Common Function': 'function-introduction/common-function.md'
- 'Using Environment Variables': 'function-introduction/using-environment-variables.md'
- 'Database Connection': 'function-introduction/database-connection.md'
- 'MinIO Connection': 'function-introduction/minio-connection.md'
- 'User Guide':
- 'Dashboard': 'user-guide/dashboard.md'
- 'Application Management': 'user-guide/application-management.md'
- 'Function Management': 'user-guide/function-management.md'
- 'Database Access': 'user-guide/database-access.md'
- 'Storage Access': 'user-guide/storage-access.md'
- 'User Settings': 'user-guide/user-settings.md'
- 'Development':
- 'Dev Environment': 'development/dev-environment.md'
- 'Project Structure': 'development/project-structure.md'
- 'Contributing': 'development/contributing.md'
- 'API Reference':
- 'Authentication': 'api-reference/authentication.md'
- 'Functions API': 'api-reference/functions-api.md'
- 'Applications API': 'api-reference/applications-api.md'