Skip to content

Instantly share code, notes, and snippets.

@Webbrother
Created March 21, 2017 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Webbrother/d99c9ad53ce9c6071e17fb4e5969d79d to your computer and use it in GitHub Desktop.
Save Webbrother/d99c9ad53ce9c6071e17fb4e5969d79d to your computer and use it in GitHub Desktop.
#!/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 scss-lint@0.38 ======"
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