Last active
January 8, 2016 18:36
-
-
Save troggy/472f6a3e7da88a97de94 to your computer and use it in GitHub Desktop.
Cryptoreal copay
This file contains hidden or 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
# Install BWS and dependecies | |
git clone https://github.com/troggy/bitcore-wallet-service -b colu cryptoreal-bws && cd cryptoreal-bws/ && npm i && cd - | |
# Run BWS | |
cd cryptoreal-bws && npm start && cd - | |
# Install Copay and dependencies | |
git clone https://github.com/troggy/copay -b cryptoreal cryptoreal-copay && cd cryptoreal-copay/ && npm i && bower install && cd - | |
# Configure Copay to use local BWS (skip this step if running on local machine) | |
cd cryptoreal-copay/ && sed -e s/127\.0\.0\.1/`dig +short myip.opendns.com @resolver1.opendns.com`/ src/js/services/configService.js > configService.js.tmp && cp configService.js.tmp src/js/services/configService.js && rm configService.js.tmp && cd - | |
# Rebuild Copay | |
cd cryptoreal-copay/ && grunt && cd - | |
# Run Copay | |
cd cryptoreal-copay && npm start && cd - |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment