Skip to content

Instantly share code, notes, and snippets.

@jackzampolin
Last active January 10, 2018 17:56
Show Gist options
  • Save jackzampolin/b1358fb400fbe01c135bda4fdad5e65e to your computer and use it in GitHub Desktop.
Save jackzampolin/b1358fb400fbe01c135bda4fdad5e65e to your computer and use it in GitHub Desktop.
Getting Multi Reader Up and running
# Clone both repos
git clone git@github.com:blockstack/blockstack.js.git $PROJECTS/github.com/blockstack/blockstack.js
git clone git@github.com:blockstack/blockstack-browser.git $PROJECTS/github.com/blockstack/blockstack-browser

# Build and link the develop branch blockstack.js
cd $PROJECTS/github.com/blockstack/blockstack.js
git checkout develop
git pull
npm install
npm run build
npm link

# Build the browser with the develop version of blockstack.js
cd $PROJECTS/github.com/blockstack/blockstack-browser
git checkout develop
git pull
npm install
npm link blockstack
npm run dev
@mrjmd
Copy link

mrjmd commented Jan 10, 2018

Since latest is in blockstack.js now:

# Clone browser repo
git clone git@github.com:blockstack/blockstack-browser.git

# Build the browser with the develop version of blockstack.js
cd blockstack-browser
git checkout develop
git pull
npm install
npm run dev

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment