Skip to content

Instantly share code, notes, and snippets.

@dhensby
Last active October 9, 2015 18:14
Show Gist options
  • Save dhensby/8335a3de21c199de28b8 to your computer and use it in GitHub Desktop.
Save dhensby/8335a3de21c199de28b8 to your computer and use it in GitHub Desktop.
Provisioning a koding.io machine for SilverStripe
//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