capcake
capcake copied to clipboard
Deploy CakePHP applications using Capistrano
Results
2
capcake issues
Sort by
recently updated
recently updated
newest added
I just updated from CakePHP `3.4.12` to `3.5.0` along with `cakephp/migrations` to `1.7.1` and capcake migrations broke. Apparently the plugin dot notation of `Migrations.migrations` is no longer supported. The changes...
Capcake should hook somewhere (`before deploy:publishing`?) to clear cache ``` ruby namespace :deploy do before publishing, :clear_cache do on roles(:app) do within release_path do execute :rm, '-rf', 'tmp/cache/**/*' end end...
enhancement