Created
March 21, 2017 18:49
-
-
Save Webbrother/d99c9ad53ce9c6071e17fb4e5969d79d 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
#!/bin/bash | |
echo "====== Start provisioning! ======" | |
echo "====== OS apt-get update ======" | |
sudo apt-get update | |
echo "====== Installing git ======" | |
sudo apt-get install -y git | |
echo "====== Installing ruby ======" | |
sudo apt-get install -y ruby-full | |
echo "====== Installing gem bundler ======" | |
sudo gem install bundler | |
echo "====== Installing gem [email protected] ======" | |
sudo gem install scss_lint --version 0.38 | |
#echo "Installing Sass" | |
#gem install sass | |
echo "====== Installing Nodejs ======" | |
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
echo "====== Installing Webpack (globally) ======" | |
sudo npm install -g webpack | |
echo "====== Installing Bower (globally) ======" | |
sudo npm install -g bower | |
echo "====== It's all done sweetheart, enjoy! ^.^ ======" | |
exit | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment