symfony - Installing Capistrano with a specific config dir -
i have symfony2 application deploy using capistrano3. performing cap install creates config directory in projectroot. keep project clean, install config dir app\config\capistrano. possible? cannot find hints in documentations.
found anwser in pull request on github.
enter following 2 lines capfile, before capistrano\setup beign called.
set :deploy_config_path, 'app/config/deploy.rb' set :stage_config_path, 'app/config/deploy' `
it implemented in 3.1.x branch
Comments
Post a Comment