-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# The active coin: BTC/LTC | ||
BTCEXP_COIN=BTX | ||
|
||
# Host/Port to bind to | ||
BTCEXP_HOST=127.0.0.1 | ||
BTCEXP_PORT=3003 | ||
|
||
# Bitcoin RPC Credentials (URI -OR- HOST/PORT/USER/PASS) | ||
BTCEXP_BITCOIND_URI= http://usera:passwordBTX@127.0.0.1:8556 | ||
BTCEXP_BITCOIND_HOST=localhost | ||
BTCEXP_BITCOIND_PORT=8556 | ||
BTCEXP_BITCOIND_USER=user | ||
BTCEXP_BITCOIND_PASS=passwordBTX | ||
BTCEXP_BITCOIND_COOKIE=/root/.bitcore/main/.cookie | ||
|
||
# Optional ElectrumX Servers, used to display address transaction histories | ||
# Ref: https://uasf.saltylemon.org/electrum | ||
BTCEXP_ADDRESS_API=electrumx | ||
BTCEXP_ELECTRUMX_SERVERS=tls://127.0.0.1:55002 | ||
|
||
# Optional InfluxDB Credentials (URI -OR- HOST/PORT/DBNAME/USER/PASS) | ||
#BTCEXP_ENABLE_INFLUXDB=true | ||
#BTCEXP_INFLUXDB_URI=influx://username:password@127.0.0.1:8086 | ||
#BTCEXP_INFLUXDB_HOST=127.0.0.1 | ||
#BTCEXP_INFLUXDB_PORT=8086 | ||
#BTCEXP_INFLUXDB_DBNAME=influxdb | ||
#BTCEXP_INFLUXDB_USER=dbuser | ||
#BTCEXP_INFLUXDB_PASS=dbpassword | ||
|
||
#BTCEXP_COOKIE_SECRET=0000aaaafffffgggggg | ||
|
||
# Whether public-demo aspects of the site are active | ||
#BTCEXP_DEMO=true | ||
|
||
# Don't request currency exchange rates | ||
BTCEXP_NO_RATES=true | ||
|
||
# Password protection for site via basic auth (enter any username, only the password is checked) | ||
#BTCEXP_BASIC_AUTH_PASSWORD=mypassword | ||
|
||
# Enable to allow access to all RPC methods | ||
#BTCEXP_RPC_ALLOWALL=true | ||
|
||
# Custom RPC method blacklist | ||
#BTCEXP_RPC_BLACKLIST=signrawtransaction,sendtoaddress,stop,... | ||
|
||
#BTCEXP_IPSTACK_KEY=0000aaaafffffgggggg | ||
#BTCEXP_GANALYTICS_TRACKING=UA-XXXX-X | ||
#BTCEXP_SENTRY_URL=https://00000fffffff@sentry.io/XXXX |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,5 +55,5 @@ typings/ | |
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
#.env | ||
|