symfony icon indicating copy to clipboard operation
symfony copied to clipboard

Capistrano tasks for deploying the Symfony standard edition

Results 16 symfony issues
Sort by recently updated
recently updated
newest added

Hi, I am trying to include a tastk to restart symfony messenger once deployed the new code (https://symfony.com/doc/current/messenger.html#deploying-to-production) But as this comment says (https://stackoverflow.com/questions/63508798/symfony-messenger-workers-do-not-stop-when-running-under-supervisor), the command must be executed in...

| Library | Version | |---|---| | Capistrano | 3.12.1 | | Capistrano_symfony | 2.0.0 | I followed this piece from the docs: ```ruby If you want to execute a...

After updating to Symfony 4.4 and migrating to v2 of this gem I was reviewing deploy logs and noticed that the `symfony:cache:warmup` task was running the SSH command itself multiple...

Avoids runing the same symfony console command in a loop for each machine it's run on Should fix #122

Maybe it is an interesting feature to run unit tests either locally before deploying or on production after deploy. I'm no ruby expert so this was my first approach: ```ruby...

When using: ``` namespace :deploy do task :migrate do on roles(:db) do symfony_console('doctrine:migrations:migrate', '--no-interaction') end end end ```

If you link the vendor folder and your build fails and you go back, you will be hanging with wrong versions of your packages. So a different solution would be...

I haven't found any previous discussions about this topic, so I start one here: One thing that is missing from this gem (and we had it in capifony) is doctrine...

capistrano/capistrano has a rspec and cucumber test suite, we should be looking were possible to leverage and provide the same coverage for this library.

When executing php commands in the server, if the command has an error, these errors are not shown anywhere, either in the console or in the logs. You can test...