2018-01-22 15:49:04 +00:00
2018-01-19 10:42:58 +00:00
module . exports = {
2018-01-22 22:43:32 +00:00
// Debug mode for testing the bot
2018-01-22 15:50:23 +00:00
debug : true ,
2018-01-25 13:05:22 +00:00
2018-01-22 22:43:32 +00:00
// URL where the bot is listening (e.g. '/funding')
urlEndpoint : '' ,
2018-01-25 13:05:22 +00:00
// Path for the log files inside the docker image (e.g. './log/'), remember to create the folder inside the docker workspace if you change it (the folde will be copied to the docker image during the build)
2018-01-22 22:43:32 +00:00
logPath : '' ,
2018-01-25 13:05:22 +00:00
2018-01-22 22:43:32 +00:00
// URL for the signer (e.g. 'https://ropsten.infura.io')
signerPath : '' ,
2018-01-25 13:05:22 +00:00
// Address with the funding for the bounties
2018-01-22 22:43:32 +00:00
sourceAddress : '' ,
2018-01-25 13:05:22 +00:00
2018-01-22 22:43:32 +00:00
// Token of the currency for fetching real time prices (e.g. 'SNT')
token : '' ,
2018-01-25 13:05:22 +00:00
2018-01-22 22:43:32 +00:00
// Limit for the gas used in a transaction (e.g. 92000)
gasLimit : 0 ,
2018-01-25 13:05:22 +00:00
2018-01-22 22:43:32 +00:00
// Price per hour you will pay in dolars (e.g. 35)
priceHour : 0 ,
2018-01-25 13:05:22 +00:00
2018-01-22 22:43:32 +00:00
// Delay before funding a bounty (e.g. 3600000)
delayInMiliSeconds : 0 ,
2018-01-25 13:05:22 +00:00
2018-01-22 22:43:32 +00:00
// Bounty Labels for the issues and the correspondent houres (e.g. {'bounty-xs': 3})
2018-01-24 22:37:07 +00:00
bountyLabels : { } ,
// username for the bot which has to comment for starting the process (e.g. status-bounty-)
2018-01-25 00:01:57 +00:00
githubUsername : '' ,
// Activate real transactions
realTransaction : false
2018-01-17 16:48:56 +00:00
}