forked from dgarage/NBXplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3 launch project configurations for different coins (dgarage#189)
* Added new launch configs Added 3 launch configs to the NBXplorer: "NBXplorer - BTC on Mainnet" -> run NBXplorer with the default arguments "NBXplorer - BTC+LTC on Regtest" -> run NBXplorer with the BTC+LTC config as in README.md "NBXplorer - DASH on Testnet" -> run NBXplorer with default DASH Testnet settings * Changed the startup URLs Changed the startup URLs to the status page of BTC, LTC and DASH * Added default RPC usernames and passwords * Removed the iisSettings from the configuration * Removed rpcuser and rpcpassword from the BTC and LTC settings * Removed the RPC username and password from the Dash config as well * Added a few notes and sample parameters to the command line section * Fixed the "run from source" command and the btcnodeendpoint parameter. * Removed the rescan demonstration. * Changed the "Run from source" and "Run using built DLL" sections * Removed the double "compiled" word * Added details about the --noauth parameter in the Postman section
- Loading branch information
1 parent
bbc358d
commit c97f807
Showing
3 changed files
with
65 additions
and
10 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
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,36 @@ | ||
{ | ||
"profiles": { | ||
"NBXplorer - BTC on Mainnet": { | ||
"commandName": "Project", | ||
"commandLineArgs": "", | ||
"launchBrowser": true, | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
}, | ||
"applicationUrl": "http://localhost:4774", | ||
"launchUrl": "v1/cryptos/btc/status" | ||
}, | ||
|
||
"NBXplorer - BTC+LTC on Regtest": { | ||
"commandName": "Project", | ||
"commandLineArgs": "--chains=btc,ltc --network=regtest", | ||
"launchBrowser": true, | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
}, | ||
"applicationUrl": "http://localhost:4774", | ||
"launchUrl": "v1/cryptos/ltc/status" | ||
}, | ||
|
||
"NBXplorer - DASH on Testnet": { | ||
"commandName": "Project", | ||
"commandLineArgs": "--chains=dash --network=testnet", | ||
"launchBrowser": true, | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
}, | ||
"applicationUrl": "http://localhost:4774", | ||
"launchUrl": "v1/cryptos/dash/status" | ||
} | ||
} | ||
} |
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