-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js.dist
56 lines (55 loc) · 1.89 KB
/
config.js.dist
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
// config object
module.exports = {
general : {
mode : "development" // one of "development", "production"
},
zotero : {
hasLibraries : true,
name : "Zotero",
enabled : true,
// apiKey : "<your API key here>",
// userId : <your user id here>,
storage : {
// webdav : {
// zipped : true,
// filenameKey : "key",
// url : "xxx",
// user : "xxx",
// password : "xxx"
// }
}
},
bookends : {
hasLibraries : true,
name : "Bookends",
enabled : false,
storage : {
// webdav : {
// zipped : false,
// filenameKey : "filename",
// url : "xxx",
// user : "xxx",
// password : "xxx"
// }
}
},
datastore : {
filename : __dirname + '/data/syncdata'
},
console : {
development : {
uncaughtExceptionCatch: true, // Do we want to catch uncaughtExceptions?
consoleFilter: ['LOG','DEBUG'], // Filter these console output types
logToFile: false, // if true, will put console output in a log file folder called 'logs'
logFilter: [], // Examples: Filter these types to not log to file
colors: true // do we want pretty pony colors in our console output?
},
production : {
uncaughtExceptionCatch: false, // Do we want to catch uncaughtExceptions?
consoleFilter: ['LOG','DEBUG'], // Filter these console output types
logToFile: true, // if true, will put console output in a log file folder called 'logs'
logFilter: ['LOG','DEBUG'], // Examples: Filter these types to not log to file
colors: false // do we want pretty pony colors in our console output?
}
}
};