-
Notifications
You must be signed in to change notification settings - Fork 364
/
Copy pathsiteConfig.js
116 lines (94 loc) · 3.34 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
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
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* 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.
*
* @format
*/
// See https://docusaurus.io/docs/site-config for all the possible
// site configuration options.
// Define this so it can be easily modified in scripts (to host elsewhere)
const baseUrl = '/';
// List of projects/orgs using your project for the users page.
const users = [];
const siteConfig = {
title: 'Opacus',
tagline: 'Train PyTorch models with Differential Privacy',
url: 'https://opacus.ai',
baseUrl: baseUrl,
cleanUrl: true, // No .html extensions for paths
cname: 'opacus.ai',
// used for publishing and more
organizationName: 'pytorch',
projectName: 'opacus',
// Google analytics
gaTrackingId: 'UA-117752657-3',
// links that will be used in the header navigation bar
headerLinks: [
{doc: 'introduction', label: 'Introduction'},
{doc: 'faq', label: 'FAQ'},
{href: `${baseUrl}tutorials/`, label: 'Tutorials'},
{href: `${baseUrl}api/`, label: 'API Reference'},
{href: 'https://github.com/pytorch/opacus', label: 'GitHub'},
{search: true}, // position search box to the very right
],
// add users to the website
users,
// search integration w/ algolia
algolia: {
apiKey: '207c27d819f967749142d8611de7cb19',
indexName: 'opacus',
},
// images for header/footer and favicon
headerIcon: 'img/opacus_logo.svg',
footerIcon: 'img/opacus_favicon.svg',
favicon: 'img/opacus_favicon.svg',
logo: 'img/opacus_logo_vertical.svg',
// colors for website
colors: {
primaryColor: '#4283f4',
secondaryColor: '#2af2bf', // green
},
highlight: {
theme: 'default',
},
// custom scripts that are placed in <head></head> of each page
scripts: [
// Github buttons
'https://buttons.github.io/buttons.js',
// Copy-to-clipboard button for code blocks
`${baseUrl}js/code_block_buttons.js`,
'https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js',
// Mathjax for rendering math content
`${baseUrl}js/mathjax.js`,
'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS_HTML',
],
// CSS sources to load
stylesheets: [`${baseUrl}css/code_block_buttons.css`],
// enable on-page navigation for the current documentation page
onPageNav: 'separate',
// enable scroll to top button a the bottom of the site
scrollToTop: true,
// if true, expand/collapse links & subcategories in sidebar
docsSideNavCollapsible: true,
// URL for editing docs
editUrl: 'https://github.com/pytorch/opacus/tree/main/docs/',
// Disable logo text so we can just show the logo
disableHeaderTitle: true,
// Open Graph and Twitter card images
ogImage: 'img/opacus_logo.svg',
twitterImage: 'img/opacus_logo.svg',
// show html docs generated by sphinx
wrapPagesHTML: true,
};
module.exports = siteConfig;