-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Symfony 3 directory structure #31
Comments
👍 I have some changes to make to how we resolve I am not sure which should be the default however. |
I would leave Symfony 2 structure the default for now. Setting up a project using Symfony 3 structure is an explicit action in the Symfony Standard distribution. Most projects will default to the old structure. |
👍 |
+1 :) |
👍 |
2 similar comments
👍 |
+1 |
is there any workaround guys ? I did like this https://gist.github.com/feyyazesat/18daf74bae3454919ff5 ERROR Cannot change permissions: /path/to/releases/20150526172544/app/cache is not a file or directory SSHKit::Runner::ExecuteError: Exception while executing as [email protected]: Cannot change permissions: /path/to/releases/20150526172544/app/cache is not a file or directory Capistrano::FileNotFound: Cannot change permissions: /path/to/releases/20150526172544/app/cache is not a file or directory/ Tasks: TOP => symfony:set_permissions |
You can override console, logs and cache paths which have changed in the new S3 structure by adding the following to your deploy.rb.
|
+1 |
Fixed in #50 |
The following code will help you deploy symfony3 structure. ruby-1.9.3-p551, Gem file details below source 'http://rubygems.org' gem 'capifony'
Hope this helps. |
Please support the Symfony 3 directory structure: http://stackoverflow.com/questions/23993295/what-is-the-new-symfony-3-directory-structure
This can be as easy as adding a
var_path
andbin_path
, wherecache_path
andlog_path
depend on thevar_path
, andsymfony_console_path
depends onbin_path
. For a Symfony 2 project,var_path
andbin_path
should be equal toapp_path
. For a Symfony 3 structured project they should bevar
andbin
respectively.The text was updated successfully, but these errors were encountered: