With symfony 1, there was a simple built in task for doing deployments via rsync.
symfony project:deploy [--go] [--rsync-dir="..."] [--rsync-options[="..."]] server
For larger, more complicated projects, I was in the habit of extending or overwriting that task with something more robust, but it was useful to have in there for a simple application.
My question: Is there a standard, conventional way for deploying a Symfony2 application?
There are different bundles out there that add console commands:
There is also Capifony, which is really interesting but probably way more than I need for the simple app I'm working on.
Is there something else that I'm missing? I guess I'm surprised there isn't a simple built in command available out of the box.