28 lines
654 B
JavaScript
28 lines
654 B
JavaScript
module.exports = {
|
|
debug: true,
|
|
accessTokenPath: 'token',
|
|
clientId: '<CLIENT_ID>',
|
|
clientSecret: '<CLIENT_SECRET>',
|
|
username: '<USERNAME>',
|
|
password: '<PASSWORD>',
|
|
|
|
userAgent: '<USER_AGENT_STRING>',
|
|
howToUseUrl: 'https://np.reddit.com/r/lbry/wiki/tipbot',
|
|
|
|
// for handling tip comments
|
|
redditName: 'u/lbryian',
|
|
gildPrice: 2.5,
|
|
|
|
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
|
|
}
|
|
};
|