Skip to content

Instantly share code, notes, and snippets.

@derred
derred / gist:4593683
Last active December 11, 2015 11:28 — forked from ajmalafif/rails.md
[Rails] - list of useful development gems for building apps with Rails
@derred
derred / gist:4593680
Last active December 11, 2015 11:28
[WP] - git + WordPress + pagodabox + MAMP

Please note this might be a unique isolated issue to my current setup of MAMP. Proceed at your own risk

Create a "New App" with PagodaBox using their default Quickstart.

Files to configure

  1. rename config.php to config-sample.php (then setup db and install WP)
  2. Install Roots Theme
  3. /pagoda/.htaccess
  4. Boxfile
@derred
derred / gist:4593679
Last active December 11, 2015 11:28 — forked from ajmalafif/roots.md
[wp] - WordPress with Roots 6.2.0.1 (Boostrap) for pagodabox setup
@derred
derred / css.md
Created January 22, 2013 10:34
[css] - responsive timeline from horizontal to vertical.
@derred
derred / deploy.rake
Created June 14, 2012 05:18 — forked from thegrubbsian/deploy.rake
Heroku Deploy Rake Task
namespace :deploy do
HEROKU_ACCOUNT = "account_name"
MAINLINE_BRANCH = "master"
STAGING_REPO = "app-name-staging"
PRODUCTION_REPO = "app-name-production"
def make_git_timestamp
"#{@env}-deploy-#{Time.now.to_s.gsub(/:/, "-").gsub(/\s/, "-").gsub(/--/, "-")}"
end