Skip to content

Instantly share code, notes, and snippets.

@masonicGIT
Last active December 24, 2015 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masonicGIT/1e89791a18b717aefd96 to your computer and use it in GitHub Desktop.
Save masonicGIT/1e89791a18b717aefd96 to your computer and use it in GitHub Desktop.
BitGo Express installation instructions for the 21-Flask-Boilerplate

Installation quick-start guide for the 21-Flask-Boilerplate

  1. Install Node and NPM
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs npm
  1. Install BitGo Express
git clone https://github.com/BitGo/bitgo-express
cd bitgo-express
npm install
  1. Signup on BitGo and get a developer's token
  • Sign up at www.bitgo.com/wallet.
  • Once logged in, select the gear on the top right hand corner.
  • Select ‘API Access’.
  • Select the ‘Add Access Token’ button.
  • Enter all necessary information and select ‘Add Token’.
  • Set the BTC token limit to something reasonable, and ensure that you enter the public IP address of your 21 computer.
  • Your token will appear at the top of the page.
  • Take this token and set it to the ACCESS_TOKEN variable in config.py
  1. Run BitGo Express
./bin/bitgo-express --debug --port 3080 --env prod --bind localhost &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment