-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathconfig.js
More file actions
38 lines (30 loc) · 736 Bytes
/
config.js
File metadata and controls
38 lines (30 loc) · 736 Bytes
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
exports.sessionSecret = 'JustSomeRandomString';
exports.folders = [
{ type: 'git', name: 'Public GIT folder', path: '/home/nexus/Desktop/play/SparkleDashboard-x/repos/g1', pub: true },
{ type: 'git', name: 'Private GIT folder', path: '/home/nexus/Desktop/play/SparkleDashboard-x/repos/g2', pub: false }
];
exports.listen = {
port: 3000,
host: null
};
exports.https = {
enabled: false,
key: '/path/to/private.key',
cert: '/path/to/cert.crt'
};
exports.basepath = '';
exports.externalUrl = null;
// 300 sec
exports.linkCodeValidFor = 300;
// none | min | info | debug
exports.logging = 'none';
exports.fanout = {
enabled: false,
host: null,
port: 1986
};
exports.backend = {
'git': {
'bin': 'git'
}
};