Skip to content

Instantly share code, notes, and snippets.

@aeneasr
Created January 8, 2014 17:14
Show Gist options
  • Save aeneasr/8320463 to your computer and use it in GitHub Desktop.
Save aeneasr/8320463 to your computer and use it in GitHub Desktop.
# Install basic stuff
apt-get -y update
apt-get install -y python-software-properties python g++ make python-software-properties
# Add repositories with current versions
sudo add-apt-repository -y ppa:chris-lea/node.js
apt-get -y update
# Install nodejs related stuff
apt-get install -y nodejs
apt-get install -y npm
usermod -a -G vagrant www-data
# Install npm dependencies
echo "installing bower..."
npm -g install bower
echo "installing grunt..."
npm -g install grunt
echo "installing grunt-cli..."
npm -g install grunt-cli
echo "installing pm2..."
npm -g install pm2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment