diff options
author | jessib <jessib@riseup.net> | 2012-10-31 12:56:18 -0700 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2012-10-31 12:56:18 -0700 |
commit | 73a4e9f06840a85225d93734c1f4fb2ebb3b5a93 (patch) | |
tree | d754b695fed020a0a24c61f160abf04b8049a882 /config | |
parent | 6eaecdd10be3974871583e1fed8c5d4e7e307bd8 (diff) | |
parent | fc625a54eb5c54cecb5331811ff482df12b7c059 (diff) |
Merge branch 'develop' into help_develop
Diffstat (limited to 'config')
-rw-r--r-- | config/deploy.rb | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/config/deploy.rb b/config/deploy.rb deleted file mode 100644 index 9dc058a..0000000 --- a/config/deploy.rb +++ /dev/null @@ -1,37 +0,0 @@ -require "bundler/capistrano" - -set :application, "webapp" - -set :scm, :git -set :repository, "git://leap.se/leap_web" -set :branch, "deploy" - -set :deploy_via, :remote_cache -set :deploy_to, '/home/webapp' -set :use_sudo, false - -set :normalize_asset_timestamps, false - -set :user, "webapp" - -set :git_enable_submodules, 1 # we're using an srp js submodule for now - -role :web, "94.103.43.3" # Your HTTP server, Apache/etc -role :app, "94.103.43.3" # This may be the same as your `Web` server -# role :db, "your primary db-server here", :primary => true # This is where Rails migrations will run -# role :db, "your slave db-server here" - -# if you want to clean up old releases on each deploy uncomment this: -# after "deploy:restart", "deploy:cleanup" - -# if you're still using the script/reaper helper you will need -# these http://github.com/rails/irs_process_scripts - -# If you are using Passenger mod_rails uncomment this: -# namespace :deploy do -# task :start do ; end -# task :stop do ; end -# task :restart, :roles => :app, :except => { :no_release => true } do -# run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}" -# end -# end |