Created
April 3, 2012 14:07
-
-
Save nhoffmann/2292275 to your computer and use it in GitHub Desktop.
Capistrano recipe for deploying static content.
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
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