forked from fission/fission.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
254 lines (217 loc) · 7.48 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
# Copyright 2018 Google LLC All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
baseURL = "https://fission.io/"
enableRobotsTXT = true
title = "Fission"
# Will give values to .Lastmod etc.
enableGitInfo = true
# Language settings
contentDir = "content/en"
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
# Useful when translating.
enableMissingTranslationPlaceholders = true
# Comment out to disable taxonomies in Docsy
# disableKinds = ["taxonomy", "taxonomyTerm"]
# You can add your own taxonomies
[taxonomies]
author = "author"
category = "categories"
tag = "tags"
[params.taxonomy]
# set taxonomyCloud = [] to hide taxonomy clouds
taxonomyCloud = []
# If used, must have same lang as taxonomyCloud
taxonomyCloudTitle = ["Tag Cloud", "Categories", "Authors"]
# set taxonomyPageHeader = [] to hide taxonomies on the page headers
taxonomyPageHeader = ["tags", "categories", "authors"]
# Highlighting config
pygmentsCodeFences = true
pygmentsUseClasses = false
# Use the new Chroma Go highlighter in Hugo.
pygmentsUseClassic = false
#pygmentsOptions = "linenos=table"
# See https://help.farbox.com/pygments.html
pygmentsStyle = "tango"
# First one is picked as the Twitter card image if not set on page.
#images = ["images/project-illustration.png"]
# Configure how URLs look like per section.
[permalinks]
blog = "/blog/:slug/"
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
style = "tango"
## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday
[blackfriday]
angledQuotes = false
hrefTargetBlank = false
latexDashes = true
plainIDAnchors = true
# Image processing configuration.
[imaging]
anchor = "smart"
quality = 75
resampleFilter = "CatmullRom"
[services]
[services.googleAnalytics]
# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback].
id = ""
# Language configuration
[languages]
[languages.en]
description = "Fast Serverless Functions for Kubernetes"
languageName = "English"
title = "Fission"
# Weight used for sorting.
weight = 1
# Everything below this are Site Params
[params]
copyright = "Copyright © 2020 Fission Project"
github_repo = "https://github.com/fission/fission.io"
github_project_repo = "https://github.com/fission/fission"
privacy_policy = ""
# Google Custom Search Engine ID. Remove or comment out to disable search.
# gcs_engine_id = "c632b781ffe71b197"
algolia_docsearch = true
# current release branch - could be rc
release_branch = "main"
# the main version. Never is rc.
release_version = "v1.20.1"
slackurl = "/slack"
installurl = '/docs/installation/'
learnmoreurl = '/docs/installation/'
twitterurl = 'https://twitter.com/fissionio'
notoc = true
# First one is picked as the Twitter card image if not set on page.
images = ["images/og-image-fission.png"]
[params.social]
github = 'fission'
slackurl = "/slack"
twitter = 'fissionio'
[[params.whatsnew]]
badge = 'FISSION DZONE REFCARD'
body = 'Get started with Serverless on Kubernetes in 5 minutes! Learn how to set up Fission, its key concepts, how to create and invoke a function, monitor its performance, and more.'
heading = 'New! Download the Fission.io Refcard'
[params.whatsnew.button]
hero_class = 'mid'
text = 'Download Now!'
url = 'https://platform9.com/wp-content/uploads/2019/03/dzone-refcard-fissionio.pdf'
[[params.whatsnew]]
badge = 'BLOG'
body = 'Learn how to use Fission functions with PostgreSQL database.'
heading = 'Fission Functions with PostgreSQL Sample'
[params.whatsnew.button]
hero_class = 'mid-2'
text = 'Read More'
url = '/blog/how-to-use-postgresql-database-with-fission-functions/'
[[params.whatsnew]]
badge = 'BLOG'
body = 'Tutorial to deploy Next.js applications with Fission.'
heading = 'Next.js Application with Fission'
[params.whatsnew.button]
hero_class = 'mid-2'
text = 'REad More'
url = '/blog/serverless-next.js-example-blog-with-fission/'
# User interface configuration
[params.ui]
# Set to true to disable breadcrumb navigation.
breadcrumb_disable = false
# Set to true to disable the About link in the site footer
footer_about_disable = false
# Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top navbar
navbar_logo = true
# Set to true if you don't want the top navbar to be translucent when over a `block/cover`, like on the homepage.
navbar_translucent_over_cover_disable = false
# Enable to show the side bar menu in its compact state.
sidebar_menu_compact = true
# Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled)
sidebar_search_disable = true
# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events.
# This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set.
# If you want this feature, but occasionally need to remove the "Feedback" section from a single page,
# add "hide_feedback: true" to the page's front matter.
[params.ui.feedback]
enable = false
# The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful).
no = 'Sorry to hear that. Please <a href="https://github.com/fission/fission/issues/new">tell us how we can improve</a>.'
yes = 'Glad to hear it! Please <a href="https://github.com/fission/fission/issues/new">tell us how we can improve</a>.'
# Adds a reading time to the top of each doc.
# If you want this feature, but occasionally need to remove the Reading time from a single page,
# add "hide_readingtime: true" to the page's front matter
[params.ui.readingtime]
enable = false
[params.links]
# End user relevant links. These will show up on left side of footer and in the community page if you have one.
[[params.links.user]]
desc = "Follow us on Twitter to get the latest news!"
icon = "fab fa-twitter"
name = "Twitter"
url = "https://twitter.com/fissionio"
[[params.links.user]]
desc = "Chat with other project users in #users"
icon = "fab fa-slack"
name = "Slack"
url = "/slack"
[[params.links.user]]
desc = "Development takes place here!"
icon = "fab fa-github"
name = "GitHub"
url = "https://github.com/fission/fission"
[sitemap]
changefreq = "monthly"
filename = "sitemap.xml"
priority = 0.5
[menu]
[[menu.main]]
name = "Docs"
url = "/docs/"
pre = "<i class='fas fa-book'></i>"
weight = 10
[[menu.main]]
name = "Blog"
url = "/blog/"
pre = "<i class='fas fa-blog'></i>"
weight = 11
[[menu.main]]
name = "Environments"
url = "/environments/"
pre = "<i class='fas fa-store'></i>"
weight = 12
[[menu.main]]
name = "Examples"
url = "/examples/"
pre = "<i class='fas fa-certificate'></i>"
weight = 13
[[menu.main]]
name = "GitHub"
url = "https://github.com/fission"
pre = "<i class='fab fa-github'></i>"
weight = 14
[[menu.main]]
name = "Slack"
url = "/slack"
pre = "<i class='fab fa-slack'></i>"
weight = 15
[[menu.main]]
name = "Support"
url = "/support/"
pre = "<i class='fas fa-briefcase'></i>"
weight = 16
[module]
proxy = "direct"
[[module.imports]]
path = "github.com/google/docsy"
[[module.imports]]
path = "github.com/google/docsy/dependencies"