added comments to speechConfig_example.js
This commit is contained in:
parent
25170acc74
commit
c881d7c64b
1 changed files with 10 additions and 11 deletions
|
@ -1,23 +1,22 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
wallet: {
|
wallet: {
|
||||||
lbryClaimAddress: null,
|
lbryClaimAddress: null, // choose an address from your lbry wallet
|
||||||
defaultChannel : null,
|
|
||||||
},
|
},
|
||||||
analytics: {
|
analytics: {
|
||||||
googleId: null,
|
googleId: null, // google id for analytics tracking; leave `null` if not applicable
|
||||||
},
|
},
|
||||||
sql: {
|
sql: {
|
||||||
database: 'lbry',
|
database: null, // name of mysql database
|
||||||
username: null,
|
username: null, // username for mysql
|
||||||
password: null,
|
password: null, // password for mysql
|
||||||
},
|
},
|
||||||
logging: {
|
logging: {
|
||||||
logLevel : null,
|
logLevel : null, // options: silly, debug, verbose, info
|
||||||
slackWebHook : null,
|
slackWebHook : null, // enter a webhook if you wish to push logs to slack; otherwise leave as `null`
|
||||||
slackErrorChannel: null,
|
slackErrorChannel: null, // enter a slack channel (#example) for errors to be sent to; otherwise leave null
|
||||||
slackInfoChannel : null,
|
slackInfoChannel : null, // enter a slack channel (#info) for info level logs to be sent to otherwise leave null
|
||||||
},
|
},
|
||||||
session: {
|
session: {
|
||||||
sessionKey: null,
|
sessionKey: null, // enter a secret key to be used for session encryption
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue