From 439e27ef2792a03e5e50f8b9c607fca512cb1452 Mon Sep 17 00:00:00 2001 From: Azul Date: Sat, 6 Oct 2012 19:42:29 +0200 Subject: Created deploy branch with some springbok specifics --- config/deploy.rb | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 config/deploy.rb (limited to 'config/deploy.rb') diff --git a/config/deploy.rb b/config/deploy.rb new file mode 100644 index 0000000..9dc058a --- /dev/null +++ b/config/deploy.rb @@ -0,0 +1,37 @@ +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 -- cgit v1.2.3