Capistrano3 を使用してデプロイしたい Symfony2 アプリケーションがあります。実行すると、プロジェクトルートにディレクトリがcap install
作成されます。config
プロジェクトをクリーンに保つために、config dir を のようなものにインストールしたいと思いapp\config\capistrano
ます。これは可能ですか?ドキュメントにヒントが見つかりません。
2 に答える
5
Found the anwser in a pull request on Github.
Enter the following two lines to your Capfile
, before capistrano\setup
beign called.
set :deploy_config_path, 'app/config/deploy.rb'
set :stage_config_path, 'app/config/deploy'
`
It is implemented in the 3.1.x
branch
于 2014-03-26T12:05:32.170 に答える