flosight-api/config/index.js

24 lines
368 B
JavaScript

const config = {
logging: 'debug',
bcoin: {
network: 'main',
db: 'leveldb',
checkpoints: true,
workers: true,
logLevel: 'info',
'max-inbound': 100,
},
mongodb: {
uri: 'mongodb://localhost/bitcore',
options: {
useMongoClient: true,
},
},
api: {
port: 3000,
json_spaces: 2,
},
};
module.exports = config;