mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-04 16:10:03 +00:00
15 lines
468 B
Ruby
15 lines
468 B
Ruby
set :deploy_config_path, 'app/config/capistrano/deploy.rb'
|
|
set :stage_config_path, 'app/config/capistrano/deploy'
|
|
|
|
# Load DSL and set up stages
|
|
require 'capistrano/setup'
|
|
|
|
# Include default deployment tasks
|
|
require 'capistrano/deploy'
|
|
|
|
require 'capistrano/composer'
|
|
require 'capistrano/file-permissions'
|
|
require 'capistrano/symfony'
|
|
|
|
# Load custom tasks from `lib/capistrano/tasks` if you have any defined
|
|
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
|