Dan Janosik
6 years ago
5 changed files with 50 additions and 50 deletions
@ -1,31 +1,31 @@ |
|||||
module.exports = { |
module.exports = { |
||||
rpc: { |
rpc: { |
||||
host:"127.0.0.1", |
host: process.env.BTCEXP_BITCOIND_HOST || "127.0.0.1", |
||||
port:8332, |
port: process.env.BTCEXP_BITCOIND_PORT || 8332, |
||||
username:"rpc_username", |
username: process.env.BTCEXP_BITCOIND_USER, |
||||
password:"rpc_password" |
password: process.env.BTCEXP_BITCOIND_PASS, |
||||
}, |
}, |
||||
|
|
||||
influxdb:{ |
influxdb:{ |
||||
active:false, |
active: !!process.env.BTCEXP_INFLUXDB_ENABLED, |
||||
host:"127.0.0.1", |
host: process.env.BTCEXP_INFLUXDB_HOST || "127.0.0.1", |
||||
port:8086, |
port: process.env.BTCEXP_INFLUXDB_PORT || 8086, |
||||
database:"influxdb", |
database: process.env.BTCEXP_INFLUXDB_DB || "influxdb", |
||||
username:"admin", |
username: process.env.BTCEXP_INFLUXDB_USER || "admin", |
||||
password:"admin" |
password: process.env.BTCEXP_INFLUXDB_PASS || "admin" |
||||
}, |
}, |
||||
|
|
||||
// optional: enter your api access key from ipstack.com below
|
// optional: enter your api access key from ipstack.com below
|
||||
// to include a map of the estimated locations of your node's
|
// to include a map of the estimated locations of your node's
|
||||
// peers
|
// peers
|
||||
// format: "ID_FROM_IPSTACK"
|
// format: "ID_FROM_IPSTACK"
|
||||
ipStackComApiAccessKey:null, |
ipStackComApiAccessKey: process.env.BTCEXP_IPSTACK_KEY, |
||||
|
|
||||
// optional: GA tracking code
|
// optional: GA tracking code
|
||||
// format: "UA-..."
|
// format: "UA-..."
|
||||
googleAnalyticsTrackingId:null, |
googleAnalyticsTrackingId: process.env.BTCEXP_GANALYTICS_TRACKING, |
||||
|
|
||||
// optional: sentry.io error-tracking url
|
// optional: sentry.io error-tracking url
|
||||
// format: "SENTRY_IO_URL"
|
// format: "SENTRY_IO_URL"
|
||||
sentryUrl:null, |
sentryUrl: process.env.BTCEXP_SENTRY_URL, |
||||
}; |
}; |
||||
|
Loading…
Reference in new issue