spee.ch/config/speechConfig.js.example

49 lines
1.9 KiB
Text
Raw Normal View History

2017-11-07 00:18:45 +01:00
module.exports = {
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: {
title : 'Spee.ch',
name : 'Spee.ch',
host : 'https://spee.ch',
description: 'Open-source, decentralized image and video sharing.',
2018-02-06 03:14:12 +01:00
},
publish: {
primaryClaimAddress : null, // choose any address from your lbry wallet
additionalClaimAddresses: [], // // optional: add previously used claim addresses
thumbnailChannel : '@channelName', // create a channel to use for thumbnail images
thumbnailChannelId : 'xyz123...', // the channel_id (claim id) for the channel above
},
claim: {
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.',
},
testing: {
testChannel : '@testpublishchannel', // a channel to make test publishes in
testChannelId : 'xyz123...', // the claim id for the test channel
testChannelPassword: 'password', // password for the test channel
},
2018-01-18 20:12:05 +01:00
api: {
2018-01-23 21:41:39 +01:00
apiHost: 'localhost',
2018-01-18 20:12:05 +01:00
apiPort: '5279',
},
2017-11-07 00:18:45 +01:00
};