spee.ch/config/speechConfig.js.example

36 lines
1.3 KiB
Plaintext
Raw Normal View History

2017-11-07 00:18:45 +01:00
module.exports = {
wallet: {
lbryClaimAddress: null, // choose an address from your lbry wallet
2017-11-07 00:18:45 +01:00
},
analytics: {
googleId: null, // google id for analytics tracking; leave `null` if not applicable
2017-11-07 00:18:45 +01:00
},
sql: {
database: null, // name of mysql database
username: null, // username for mysql
password: null, // password for mysql
2017-11-07 00:18:45 +01:00
},
logging: {
logLevel : null, // options: silly, debug, verbose, info
slackWebHook : null, // enter a webhook if you wish to push logs to slack; otherwise leave as `null`
slackErrorChannel: null, // enter a slack channel (#example) for errors to be sent to; otherwise leave null
slackInfoChannel : null, // enter a slack channel (#info) for info level logs to be sent to otherwise leave null
2017-11-07 00:18:45 +01:00
},
session: {
sessionKey: null, // enter a secret key to be used for session encryption
2017-11-07 00:18:45 +01:00
},
files: {
uploadDirectory: null, // enter file path to where uploads/publishes should be stored
},
site: {
name : 'Spee.ch',
host : 'https://spee.ch',
description: 'Decentralized video and content hosting.',
},
publishing: {
2017-12-15 16:56:16 +01:00
defaultTitle : 'Spee.ch',
defaultThumbnail : 'https://spee.ch/assets/img/video_thumb_default.png',
defaultDescription: 'Open-source, decentralized image and video sharing.',
},
2017-11-07 00:18:45 +01:00
};