Skip to content

Instantly share code, notes, and snippets.

@omphe
Forked from nhoffmann/deploy.rb
Created December 5, 2013 09:05
Show Gist options
  • Save omphe/7802310 to your computer and use it in GitHub Desktop.
Save omphe/7802310 to your computer and use it in GitHub Desktop.
set :application, "My Static Content"
set :servername, 'test.example.com'
# no git? simply deploy a directory
set :scm, :none
set :repository, "." # the directory to deploy
# using git? deploy from local git repository
# set :scm, :git
# set :repository, 'file//.' # path to local git repository
# files will get copied over
set :deploy_via, :copy
# do not copy these files, adjust to your needs
set :copy_exclude, [".git", ".gitignore", "Capfile", ".config"]
# the remote user
set :user, 'username'
set :use_sudo, false
# directory where our release and current directories will live
set :deploy_to, '/var/www/static/my-site'
role :web, servername
role :app, servername
role :db, servername, :primary => true
# Override default tasks which are not relevant to a non-rails app.
namespace :deploy do
task :migrate do
puts "Skipping migrate."
end
task :finalize_update do
puts "Skipping finalize_update."
end
task :start do
puts "Skipping start."
end
task :stop do
puts "Skipping stop."
end
task :restart do
puts "Skipping restart."
end
end
# leave only 5 releases
after "deploy", "deploy:cleanup"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment