Created
January 8, 2014 17:14
-
-
Save aeneasr/8320463 to your computer and use it in GitHub Desktop.
This file contains 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 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