Dan Janosik
6 years ago
5 changed files with 50 additions and 50 deletions
@ -1,31 +1,31 @@ |
|||
module.exports = { |
|||
rpc: { |
|||
host:"127.0.0.1", |
|||
port:8332, |
|||
username:"rpc_username", |
|||
password:"rpc_password" |
|||
host: process.env.BTCEXP_BITCOIND_HOST || "127.0.0.1", |
|||
port: process.env.BTCEXP_BITCOIND_PORT || 8332, |
|||
username: process.env.BTCEXP_BITCOIND_USER, |
|||
password: process.env.BTCEXP_BITCOIND_PASS, |
|||
}, |
|||
|
|||
influxdb:{ |
|||
active:false, |
|||
host:"127.0.0.1", |
|||
port:8086, |
|||
database:"influxdb", |
|||
username:"admin", |
|||
password:"admin" |
|||
active: !!process.env.BTCEXP_INFLUXDB_ENABLED, |
|||
host: process.env.BTCEXP_INFLUXDB_HOST || "127.0.0.1", |
|||
port: process.env.BTCEXP_INFLUXDB_PORT || 8086, |
|||
database: process.env.BTCEXP_INFLUXDB_DB || "influxdb", |
|||
username: process.env.BTCEXP_INFLUXDB_USER || "admin", |
|||
password: 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:null, |
|||
ipStackComApiAccessKey: process.env.BTCEXP_IPSTACK_KEY, |
|||
|
|||
// optional: GA tracking code
|
|||
// format: "UA-..."
|
|||
googleAnalyticsTrackingId:null, |
|||
googleAnalyticsTrackingId: process.env.BTCEXP_GANALYTICS_TRACKING, |
|||
|
|||
// optional: sentry.io error-tracking url
|
|||
// format: "SENTRY_IO_URL"
|
|||
sentryUrl:null, |
|||
sentryUrl: process.env.BTCEXP_SENTRY_URL, |
|||
}; |
|||
|
Loading…
Reference in new issue