Last active
October 9, 2015 18:14
-
-
Save dhensby/8335a3de21c199de28b8 to your computer and use it in GitHub Desktop.
Provisioning a koding.io machine for SilverStripe
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
//deps | |
apt-get -y update | |
apt-get -y install git mariadb-server php5-mysql php5-gd php5-tidy php5-curl nodejs npm | |
service apache2 restart | |
//composer | |
curl -sS https://getcomposer.org/installer | php | |
mv composer.phar /usr/local/bin/composer | |
//ruby | |
add-apt-repository ppa:brightbox/ruby-ng-experimental | |
apt-get update | |
apt-get install ruby2.1 -- In the case you want 2.1 | |
//sass | |
gem install sass | |
gem install compoass | |
gem install compass-colors | |
//grunt/bower | |
npm install -y -g grunt-cli bower |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment