You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.9 KiB
50 lines
1.9 KiB
var os = require('os');
|
|
var path = require('path');
|
|
var url = require('url');
|
|
|
|
var btcUri = process.env.BTCEXP_BITCOIND_URI ? url.parse(process.env.BTCEXP_BITCOIND_URI, true) : { query: { } };
|
|
var btcAuth = btcUri.auth ? btcUri.auth.split(':') : [];
|
|
|
|
var ifxUri = process.env.BTCEXP_INFLUXDB_URI ? url.parse(process.env.BTCEXP_INFLUXDB_URI, true) : { query: { } };
|
|
var ifxAuth = ifxUri.auth ? ifxUri.auth.split(':') : [];
|
|
|
|
var ifxActive = false;
|
|
if (process.env.BTCEXP_ENABLE_INFLUXDB != null) {
|
|
ifxActive = (process.env.BTCEXP_ENABLE_INFLUXDB.toLowerCase() == "true");
|
|
|
|
} else {
|
|
ifxActive = Object.keys(process.env).some(k => k.startsWith('BTCEXP_INFLUXDB_'));
|
|
}
|
|
|
|
module.exports = {
|
|
rpc: {
|
|
host: btcUri.hostname || process.env.BTCEXP_BITCOIND_HOST || "127.0.0.1",
|
|
port: btcUri.port || process.env.BTCEXP_BITCOIND_PORT || 8332,
|
|
username: btcAuth[0] || process.env.BTCEXP_BITCOIND_USER,
|
|
password: btcAuth[1] || process.env.BTCEXP_BITCOIND_PASS,
|
|
cookie: btcUri.query.cookie || process.env.BTCEXP_BITCOIND_COOKIE || path.join(os.homedir(), '.bitcoin', '.cookie'),
|
|
},
|
|
|
|
influxdb:{
|
|
active: ifxActive,
|
|
host: ifxUri.hostname || process.env.BTCEXP_INFLUXDB_HOST || "127.0.0.1",
|
|
port: ifxUri.port || process.env.BTCEXP_INFLUXDB_PORT || 8086,
|
|
database: ifxUri.pathname && ifxUri.pathname.substr(1) || process.env.BTCEXP_INFLUXDB_DBNAME || "influxdb",
|
|
username: ifxAuth[0] || process.env.BTCEXP_INFLUXDB_USER || "admin",
|
|
password: ifxAuth[1] || process.env.BTCEXP_INFLUXDB_PASS || "admin"
|
|
},
|
|
|
|
// optional: enter your api access key from ipstack.com below
|
|
// to include a map of the estimated locations of your node's
|
|
// peers
|
|
// format: "ID_FROM_IPSTACK"
|
|
ipStackComApiAccessKey: process.env.BTCEXP_IPSTACK_APIKEY,
|
|
|
|
// optional: GA tracking code
|
|
// format: "UA-..."
|
|
googleAnalyticsTrackingId: process.env.BTCEXP_GANALYTICS_TRACKING,
|
|
|
|
// optional: sentry.io error-tracking url
|
|
// format: "SENTRY_IO_URL"
|
|
sentryUrl: process.env.BTCEXP_SENTRY_URL,
|
|
};
|
|
|