Last active
August 29, 2015 14:23
-
-
Save amitaibu/cf0b42ea025b965bedb8 to your computer and use it in GitHub Desktop.
Install shoov-nodejs on ubuntu
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 docker | |
wget -qO- https://get.docker.com/ | sh | |
sudo usermod -aG docker user | |
# Exit and re-login | |
exit | |
# Pull docker containers | |
docker pull amitaibu/php-ci | |
docker pull elgalu/selenium:v2.46.0-base1 | |
# Install nodejs | |
curl -sL https://deb.nodesource.com/setup | sudo bash - | |
sudo apt-get install nodejs -y | |
# Clone repo | |
git clone https://github.com/shoov/shoov-nodejs.git | |
cd shoov-nodejs | |
npm install | |
# Install pm2 globally | |
sudo npm install pm2 -g | |
## Follow instructions in https://github.com/shoov/shoov-nodejs#installation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment