forked from bitcoinroyale/explorer
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: docker-compose setup for BTCV explorer
- Loading branch information
Showing
12 changed files
with
1,559 additions
and
2,967 deletions.
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,17 @@ | ||
# API | ||
RPC_HOST=bitcoinvault | ||
RPC_USER=user | ||
RPC_PASSWORD=password | ||
RPC_PORT=18332 | ||
DB_URL=mongodb | ||
DB_NAME=blockchain | ||
DB_PORT=27017 | ||
|
||
# Bitcoin Vault | ||
|
||
BVAULTD_RPC_PASSWORD=password | ||
BVAULTD_RPC_USER=user | ||
BVAULTD_RPC_ALLOW_IP_FIRST=0.0.0.0/0 | ||
BVAULTD_TESTNET_ENABLED=1 | ||
BVAULTD_TXINDEX=1 | ||
BVAULTD_RPC_PORT=18332 |
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
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
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,6 @@ | ||
FROM node:16 as builder | ||
WORKDIR /workspace | ||
VOLUME /workspace | ||
EXPOSE 3002 | ||
|
||
CMD npm run start-dev |
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
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
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 |
---|---|---|
@@ -1,18 +1,15 @@ | ||
var btc = require("./coins/btc.js"); | ||
var ltc = require("./coins/ltc.js"); | ||
const btcv = require("./coins/btcv.js"); | ||
|
||
module.exports = { | ||
"BTCV": btc, | ||
"BTC": btc, | ||
"LTC": ltc, | ||
"BTCV": btcv, | ||
|
||
"coins":["BTCV", "BTC", "LTC"], | ||
"currency": { | ||
"eur": "eur", | ||
"btc": "btc", | ||
"btceur": "btceur", | ||
"usd": "usd", | ||
"usdt": "usdt", | ||
"usdtusd": "usdtusd" | ||
} | ||
"coins": ["BTCV"], | ||
"currency": { | ||
"eur": "eur", | ||
"btc": "btc", | ||
"btceur": "btceur", | ||
"usd": "usd", | ||
"usdt": "usdt", | ||
"usdtusd": "usdtusd" | ||
} | ||
}; |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.