24 lines
385 B
JavaScript
24 lines
385 B
JavaScript
|
module.exports = {
|
||
|
wallet: {
|
||
|
lbryClaimAddress: null,
|
||
|
defaultChannel : null,
|
||
|
},
|
||
|
analytics: {
|
||
|
googleId: null,
|
||
|
},
|
||
|
sql: {
|
||
|
database: 'lbry',
|
||
|
username: null,
|
||
|
password: null,
|
||
|
},
|
||
|
logging: {
|
||
|
logLevel : null,
|
||
|
slackWebHook : null,
|
||
|
slackErrorChannel: null,
|
||
|
slackInfoChannel : null,
|
||
|
},
|
||
|
session: {
|
||
|
sessionKey: null,
|
||
|
},
|
||
|
};
|