Skip to content

Instantly share code, notes, and snippets.

@rinatio
Last active June 15, 2016 19:43
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save rinatio/5980122 to your computer and use it in GitHub Desktop.
Save rinatio/5980122 to your computer and use it in GitHub Desktop.
Simple capistrano config.rb for yii/php app
# for more information look at help.github.com/capistrano/
set :application, "yii2-app-basic"
server "example.com", :web # your server address or IP
set :user, "username" # your username for ssh
set :use_sudo, false
# set the remote directory you're going to deploy to
set :deploy_to, "/home/#{user}/www/#{application}"
# disable rails specific normalize_assets property
set :normalize_asset_timestamps, false
# use local repository and copy via :scp instead of clone.
# change this in case you have a url repository
set :via, ":scp"
set :scm, "git"
set :repository, "."
set :deploy_via, :copy
set :branch, "master"
# Exclude some files
set :copy_exclude, [".git", ".gitignore"]
# Set here the files which should stay the same between releases
set :shared_children, %w(www/assets runtime vendor)
namespace :deploy do
# Override default rails migrations in case you use them
#task :migrate do
# run "#{latest_release}/yii migrate --interactive=0"
#end
# If you use migrations and don't want to run `cap deploy:migrations` every time
# uncomment following 3 lines
#task :default do
# migrations
#end
# Install composer dependencies (replace `cd` with something smarter if you wish)
task :composer do
run "cd #{latest_release} && php composer.phar install"
end
# Make shared_children directories writable by others in case web server isn't in your group
# By default capistrano sets 0775 mode for those directories
task :after_setup do
dirs = shared_children.map { |d| File.join(shared_path, d.split('/').last) }
run "#{try_sudo} chmod o+w #{dirs.join(' ')}"
end
end
after "deploy:setup", "deploy:after_setup"
after "deploy:finalize_update", "deploy:composer"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment