Skip to content

Instantly share code, notes, and snippets.

@fhightower
Created March 15, 2017 19:40
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 fhightower/6d580ae6dd893a8891cf6f33e40d4486 to your computer and use it in GitHub Desktop.
Save fhightower/6d580ae6dd893a8891cf6f33e40d4486 to your computer and use it in GitHub Desktop.
Installing Blockade.io on a Linux Server
# for more info on Blockadeio, see: https://github.com/blockadeio/cloud_node
# install necesary libraries
sudo apt-get update;
sudo apt install -y python-pip python-dev libssl-dev libffi-dev mongodb-server;
sudo pip install virtualenv;
sudo apt-get install -y git;
# clone the https repo
git clone https://github.com/blockadeio/cloud_node.git;
cd cloud_node;
# setup python env
virtualenv venv && source venv/bin/activate;
pip install -r requirements.txt;
# start the API
python app/api.py;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment