lbry-social-tipbot/config/default.js

29 lines
654 B
JavaScript
Raw Normal View History

2017-09-23 18:05:00 +02:00
module.exports = {
debug: true,
accessTokenPath: 'token',
clientId: '<CLIENT_ID>',
clientSecret: '<CLIENT_SECRET>',
username: '<USERNAME>',
password: '<PASSWORD>',
2017-09-24 09:03:46 +02:00
userAgent: '<USER_AGENT_STRING>',
howToUseUrl: 'https://np.reddit.com/r/lbry/wiki/tipbot',
2017-09-23 18:05:00 +02:00
// for handling tip comments
redditName: 'u/lbryian',
2017-09-24 09:03:46 +02:00
gildPrice: 2.5,
2017-09-23 18:05:00 +02:00
mariadb: {
host: 'localhost',
username: '<DB_USERNAME>',
password: '<DB_PASSWORD>',
database: '<DB_NAME>'
},
lbrycrd: {
account: 'tips',
rpcurl: 'http://127.0.0.1:9245',
txfee: 0.00002000
}
};