forked from golang/dep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
siteConfig.js
46 lines (44 loc) · 1.48 KB
/
siteConfig.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
/* List of projects/orgs using your project for the users page */
const users = [
];
const siteConfig = {
title: 'dep' /* title for your website */,
tagline: 'Dependency management for Go',
url: 'https://golang.github.io' /* your website url */,
baseUrl: '/dep/' /* base url for your project */,
editUrl: 'https://github.com/golang/dep/edit/master/docs/',
projectName: 'dep',
headerLinks: [
{doc: 'introduction', label: 'Documentation'},
{blog: true, label: 'Blog'},
],
users,
/* path to images for header/footer */
headerIcon: 'docs/assets/DigbyFlat.svg',
footerIcon: 'docs/assets/DigbyShadowsScene2.svg',
favicon: 'docs/assets/DigbyScene2Flat.png',
/* colors for website */
colors: {
secondaryColor: '#243f75',
primaryColor: '#375eab',
},
algolia: {
apiKey: "0b4cdbc6bb41efe17ed7176afcb23441",
indexName: "golang_dep"
},
// This copyright info is used in /core/Footer.js and blog rss/atom feeds.
copyright:
'Copyright © ' +
new Date().getFullYear() +
' The Go Authors',
organizationName: 'golang', // or set an env variable ORGANIZATION_NAME
projectName: 'dep', // or set an env variable PROJECT_NAME
highlight: {
// Highlight.js theme to use for syntax highlighting in code blocks
theme: 'default',
},
scripts: ['https://buttons.github.io/buttons.js'],
// You may provide arbitrary config keys to be used as needed by your template.
repoUrl: 'https://github.com/golang/dep',
};
module.exports = siteConfig;