-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
96 lines (94 loc) · 2.6 KB
/
config.js
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
const isDev = process.env.NODE_ENV === 'development';
const config = {
gatsby: {
pathPrefix: '/docs',
siteUrl: 'https://actionsflow.github.io',
gaTrackingId: 'UA-164063423-3',
trailingSlash: true,
},
header: {
logo: '',
logoLink: '/',
title: `<a href="${isDev ? '/' : '/docs/'}">Actionsflow</a>`,
githubUrl: '',
helpUrl: '',
tweetText: '',
social: ``,
links: [
{ text: 'Triggers', link: '/triggers/' },
{
text: 'Workflows',
external: true,
link: 'https://github.com/actionsflow/awesome-actionsflow',
},
{ text: 'Reference', link: '/reference/' },
{ text: 'Github', external: true, link: 'https://github.com/actionsflow/actionsflow' },
],
search: {
enabled: true,
indexName: process.env.GATSBY_ALGOLIA_INDEX_NAME,
algoliaAppId: process.env.GATSBY_ALGOLIA_APP_ID,
algoliaSearchKey: process.env.GATSBY_ALGOLIA_SEARCH_KEY,
algoliaAdminKey: process.env.ALGOLIA_ADMIN_KEY,
},
},
sidebar: {
forcedNavOrder: [
'/',
'/getting-started/', // add trailing slash if enabled above
'/concepts/',
'/workflow/',
'/awesome/',
'/triggers/',
'/creating-triggers/',
'/webhook/',
'/actions/',
'/self-hosted/',
'/reference/',
'/faqs/',
'/compare/',
'/contributing/',
'/about/',
'/upgrade/',
],
collapsedNav: [
'/creating-triggers/',
'/reference/',
'/triggers/',
// add trailing slash if enabled above
],
links: [],
frontline: true,
ignoreIndex: false,
ignoreReadme: true,
title: '',
},
siteMetadata: {
title: 'Actionsflow Documentation',
description:
'Actionsflow is a tool for developers to build and run workflows. Like IFTTT, Zapier,you can run a workflow that is triggered by RSS, Webhook, Poll, Telegram Bot, and the other triggers that actionsflow supported',
ogImage: null,
docsLocation: 'https://github.com/actionsflow/actionsflow/tree/main',
favicon: 'https://ik.imagekit.io/owen/actionsflow/log_3zE01MsatzK.svg',
},
pwa: {
enabled: false, // disabling this will also remove the existing service worker.
manifest: {
name: 'Actionsflow Documentation',
short_name: 'Actionsflow',
start_url: '/docs/',
background_color: '#6b37bf',
theme_color: '#6b37bf',
display: 'standalone',
crossOrigin: 'use-credentials',
icons: [
{
src: 'src/pwa-512.png',
sizes: `512x512`,
type: `image/png`,
},
],
},
},
};
module.exports = config;