-
Notifications
You must be signed in to change notification settings - Fork 14
/
config.js
175 lines (175 loc) · 4.23 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
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
module.exports = {
theme: 'cosmos',
title: 'Tenderdash',
// locales: {
// "/": {
// lang: "en-US"
// },
// "/ru/": {
// lang: "ru"
// }
// },
base: process.env.VUEPRESS_BASE,
themeConfig: {
repo: 'dashevo/tenderdash',
docsRepo: 'dashevo/tenderdash',
docsDir: "docs",
editLinks: true,
label: 'core',
algolia: {
id: "BH4D9OD16A",
key: "59f0e2deb984aa9cdf2b3a5fd24ac501",
index: "tenderdash"
},
versions: [
{
"label": "v0.7",
"key": "v0.7"
},
{
"label": "v0.8",
"key": "v0.8"
},
{
"label": "v0.9",
"key": "v0.9"
}
],
topbar: {
banner: false,
},
sidebar: {
auto: true,
nav: [
{
title: 'Resources',
children: [
{
title: 'Developer Sessions',
path: '/DEV_SESSIONS.html'
},
{
// TODO(creachadair): Figure out how to make this per-branch.
// See: https://github.com/tendermint/tendermint/issues/7908
title: 'RPC',
path: 'https://docs.tendermint.com/v0.35/rpc/',
static: true
},
]
}
]
},
gutter: {
title: 'Help & Support',
editLink: true,
forum: {
title: 'Tenderdash Forum',
text: 'Join the Tenderdash forum to learn more',
url: 'https://forum.cosmos.network/c/tendermint',
bg: '#0B7E0B',
logo: 'tenderdash'
},
github: {
title: 'Found an Issue?',
text: 'Help us improve this page by suggesting edits on GitHub.'
}
},
footer: {
question: {
text: 'Chat with Tenderdash developers in <a href=\'https://discord.gg/fqfCb4fX\' target=\'_blank\'>Discord</a>'
},
logo: '/logo-bw.svg',
textLink: {
text: 'dash.org',
url: 'https://dash.org'
},
services: [
{
service: 'medium',
url: 'https://medium.com/@dashpay'
},
{
service: 'twitter',
url: 'https://twitter.com/dashpay'
},
{
service: 'linkedin',
url: 'https://www.linkedin.com/company/dash-core-group/'
},
{
service: 'reddit',
url: 'https://reddit.com/r/dashpay'
},
{
service: 'telegram',
url: 'https://t.me/dash_chat'
},
{
service: 'youtube',
url: 'https://www.youtube.com/channel/UCAzD2v9Yx4a4iS2_-unODkA'
}
],
smallprint:
'The development of Tenderdash is led by [Dash Core Group](https://dash.org/). Funding for this development comes primarily from the Dash Governance system. The Tendermint trademark is owned by Tendermint Inc. The Tenderdash logo is owned by Dash Core Group Inc., the company that maintains this website.',
links: [
{
title: 'Documentation',
children: [
{
title: 'Dash developer docs',
url: 'https://dashplatform.readme.io/'
},
{
title: 'Dash user docs',
url: 'https://docs.dash.org/en/stable/'
}
]
},
{
title: 'Community',
children: [
{
title: 'Dash blog',
url: 'https://medium.com/@dashpay'
},
{
title: 'Forum',
url: 'https://forum.dash.org'
}
]
},
{
title: 'Contributing',
children: [
{
title: 'Contributing to the docs',
url: 'https://github.com/dashevo/tenderdash'
},
{
title: 'Source code on GitHub',
url: 'https://github.com/dashevo/tenderdash'
},
{
title: 'Careers at Dash Core Group',
url: 'https://dash,org/dcg/jobs/'
}
]
}
]
}
},
plugins: [
[
'@vuepress/google-analytics',
{
ga: 'UA-51029217-11'
}
],
[
'@vuepress/plugin-html-redirect',
{
countdown: 0
}
]
]
};