Purged git history and removed sensitive information.

This commit is contained in:
Luke Barratt 2014-03-23 00:22:25 +00:00
commit 6bcc8dc76b
862 changed files with 25312 additions and 0 deletions

View file

@ -0,0 +1,10 @@
set :branch, 'master'
set :rails_env, 'production'
role :app, %w{deploy@ensl.org}
role :web, %w{deploy@ensl.org}
role :db, %w{deploy@ensl.org}
set :deploy_to, '/var/www/virtual/ensl.org/deploy'
server 'ensl.org', user: 'deploy', roles: %w{web app}

10
config/deploy/staging.rb Normal file
View file

@ -0,0 +1,10 @@
set :branch, 'develop'
set :rails_env, 'staging'
role :app, %w{deploy@staging.ensl.org}
role :web, %w{deploy@staging.ensl.org}
role :db, %w{deploy@staging.ensl.org}
set :deploy_to, '/var/www/virtual/ensl.org/deploy'
server 'staging.ensl.org', user: 'deploy', roles: %w{web app}