Created
March 15, 2017 19:40
-
-
Save fhightower/6d580ae6dd893a8891cf6f33e40d4486 to your computer and use it in GitHub Desktop.
Installing Blockade.io on a Linux Server
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
# 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