spee.ch/config/speechConfig.js.example

49 lines
1.8 KiB
Text
Raw Normal View History

2017-11-06 15:18:45 -08:00
module.exports = {
wallet: {
lbryClaimAddress: null, // choose an address from your lbry wallet
2017-11-06 15:18:45 -08:00
},
analytics: {
googleId: null, // google id for analytics tracking; leave `null` if not applicable
2017-11-06 15:18:45 -08:00
},
sql: {
database: null, // name of mysql database
username: null, // username for mysql
password: null, // password for mysql
2017-11-06 15:18:45 -08: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-06 15:18:45 -08:00
},
session: {
sessionKey: null, // enter a secret key to be used for session encryption
2017-11-06 15:18:45 -08:00
},
files: {
uploadDirectory: null, // enter file path to where uploads/publishes should be stored
},
site: {
2018-02-05 18:14:12 -08:00
title: 'Spee.ch',
name : 'Spee.ch',
2018-02-05 18:14:12 -08:00
host : 'https://spee.ch',
2018-02-23 11:00:46 -08:00
description: 'Open-source, decentralized image and video sharing.'
2018-02-05 18:14:12 -08:00
},
publish: {
thumbnailChannel : '@channelName', // create a channel to use for thumbnail images
thumbnailChannelId: 'xyz123...', // the channel_id (claim id) for the channel above
2018-02-27 15:30:20 -08:00
}
claim: {
2017-12-15 07:56:16 -08:00
defaultTitle : 'Spee.ch',
defaultThumbnail : 'https://spee.ch/assets/img/video_thumb_default.png',
defaultDescription: 'Open-source, decentralized image and video sharing.',
},
testing: {
2018-02-05 18:14:12 -08:00
testChannel : '@testpublishchannel', // a channel to make test publishes in
testChannelPassword: 'password', // password for the test channel
},
2018-01-18 14:12:05 -05:00
api: {
2018-01-23 12:41:39 -08:00
apiHost: 'localhost',
2018-01-18 14:12:05 -05:00
apiPort: '5279',
},
2017-11-06 15:18:45 -08:00
};