forked from skyao/learning-serverless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
151 lines (124 loc) · 2.86 KB
/
config.toml
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
baseurl = "http://localhost:1313/"
languageCode = "en-us"
uglyurls = true
relativeURLs = true
title = "Serverless学习笔记"
theme = "hugo-material-docs"
metadataformat = "yaml"
canonifyurls = true
preserveTaxonomyNames = true
disablePathToLower = true
# Enable Google Analytics by entering your tracking id
googleAnalytics = "c7442f5794ea2abb71c6ff05dc0b8779"
[params]
# General information
author = "敖小剑"
keywords = "serverless,无服务"
description = "Serverless学习笔记。"
copyright = "版权所有,转载请注明出处"
# Repository
provider = "GitHub"
repo_url = "https://github.com/skyao/learning-serverless"
version = ""
logo = "images/logo.png"
favicon = ""
permalink = "#"
# reward button, comment this to disable it
reward = true
# Custom assets
custom_css = []
custom_js = []
# Syntax highlighting theme
highlight_css = ""
[params.palette]
primary = "red"
accent = "teal"
[params.font]
text = "Ubuntu"
code = "Ubuntu Mono"
[social]
twitter = ""
github = "skyao"
email = "[email protected]"
[[menu.main]]
name = "前言"
url = "/"
weight = 1
[[menu.main]]
name = "Serverless介绍"
identifier = "introduction"
url = "/introduction/"
weight = 100
[[menu.main]]
name = "Serverless核心技术"
identifier = "technical"
url = "/technical/"
weight = 200
[[menu.main]]
name = "Function"
identifier = "technical-function"
parent = "technical"
url = "/technical/function/"
weight = 210
[[menu.main]]
name = "Eventing"
identifier = "technical-eventing"
parent = "technical"
url = "/technical/eventing/"
weight = 220
[[menu.main]]
name = "Serverless规范"
identifier = "spec"
url = "/spec/"
weight = 300
[[menu.main]]
name = "CloudEvents规范"
identifier = "spec-cloudevents"
parent = "spec"
url = "/spec/cloudevents/"
weight = 310
[[menu.main]]
name = "Serverless项目"
identifier = "project"
url = "/project/"
weight = 400
[[menu.main]]
name = "AWS Lambda"
identifier = "project-aws-lambda"
parent = "project"
url = "/project/aws-lambda/"
weight = 410
[[menu.main]]
name = "Azure Functions"
identifier = "project-azure-functions"
parent = "project"
url = "/project/azure-functions/"
weight = 420
[[menu.main]]
name = "Riff"
identifier = "project-riff"
parent = "project"
url = "/project/riff/"
weight = 430
[[menu.main]]
name = "Pivotal Function Service"
identifier = "project-pfs"
parent = "project"
url = "/project/pfs/"
weight = 480
[[menu.main]]
name = "函数编排"
identifier = "orchestration"
url = "/orchestration/"
weight = 500
[[menu.main]]
name = "AWS Step Function"
identifier = "orchestration-aws-step-function"
parent = "orchestration"
url = "/orchestration/aws-step-function/"
weight = 510
[blackfriday]
smartypants = true
fractions = true
smartDashes = true
plainIDAnchors = true