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.
- rename
config.phptoconfig-sample.php(then setup db and install WP) - Install Roots Theme
- /pagoda/
.htaccess Boxfile
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
| 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 |