adds new chainquery default json
This commit is contained in:
parent
eeb9471299
commit
a740f6dba1
2 changed files with 11 additions and 3 deletions
|
@ -67,6 +67,13 @@ try {
|
|||
slackConfig = require('./defaults/slackConfig.json');
|
||||
}
|
||||
|
||||
let chainqueryConfig;
|
||||
try {
|
||||
chainqueryConfig = require('../site/config/chainqueryConfig.json');
|
||||
} catch (error) {
|
||||
chainqueryConfig = require('./defaults/chainqueryConfig.json');
|
||||
}
|
||||
|
||||
// ask user questions and create config files
|
||||
inquirer
|
||||
.prompt(mysqlQuestions(mysqlDatabase, mysqlUsername, mysqlPassword))
|
||||
|
@ -196,6 +203,7 @@ inquirer
|
|||
createConfigFile('lbryConfig.json', lbryConfig);
|
||||
createConfigFile('loggerConfig.json', loggerConfig);
|
||||
createConfigFile('slackConfig.json', slackConfig);
|
||||
createConfigFile('chainqueryConfig.json', chainqueryConfig);
|
||||
})
|
||||
.then(() => {
|
||||
console.log('\nYou\'re all done!');
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"host": "localhost",
|
||||
"host": "public.chainquery.lbry.io",
|
||||
"port": "3306",
|
||||
"timeout": 30,
|
||||
"database": "chainquery",
|
||||
"username": "lbry",
|
||||
"password": "root"
|
||||
"username": "speechpublic",
|
||||
"password": "7uITJLwZRvHBZYS3JZDykD1-7hLVkVA1jDWfcgqi6QnC"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue