c0ntax / deployment-tasks-bundle
A symfony wrapper around c0ntax/deployment-tasks
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.1
- c0ntax/deployment-tasks: dev-master
- knplabs/knp-gaufrette-bundle: ^0.5|^0.6
- symfony/config: ^2.8|^3.0|^4.0
- symfony/console: ^2.8|^3.0|^4.0
- symfony/dependency-injection: ^2.8|^3.0|^4.0
- symfony/http-kernel: ^2.8|^3.0|^4.0
Requires (Dev)
- pds/skeleton: ^1.0
- phpunit/phpunit: ^8.1
- symfony/framework-bundle: ^2.8|^3.0|^4.0
- symfony/var-dumper: ^2.8|^3.0|^4.0
- symfony/yaml: ^2.8|^3.0|^4.0
This package is auto-updated.
Last update: 2025-03-05 01:11:34 UTC
README
Introduction
This is a Symfony bundle for the c0ntax/deployment-tasks library. It adds the ability to run deployment tasks once (and only once) so that you don't need to manually run adhoc scripts as part of your build/deployment process.
Installation
Run
composer req c0ntax/deployment-tasks-bundle
Configuration
This package uses knplabs/knp-gaufrette-bundle to store the tasks that have already been run, so a little bit of configuration for that package is required in order to get this up and running.
Firstly, you need to configure your 'memory'. This will be where we store all the tasks that have been performed so that we do not perform them again.
In knp_gaufrette.yaml
knp_gaufrette: adapters: tasks_local: service: id: c0ntax_deployment_tasks.gaufrette.adapter.local memory_local: local: directory: '%kernel.project_dir%/var/memory' filesystems: tasks: adapter: tasks_local alias: tasks_filesystem memory: adapter: memory_local alias: memory_filesystem
NOTE: Currently (until I can figure out how to get a symfony bundle to configure another symfony bundle) there is a bit of
boilerplate that needs to be in the configuration. Just make sure that the adapters.tasks_local
and filesystems.tasks
is
copied in as-is from above.
This will set up a local disk memory store within the project. Obviously you can configure it anywhere. With Gaufrette, you can configure it
to live almost anywhere. So, you might want to store it in a database or and S3 bucket
in your production environments. Simply add a new adapter and then change the adapter configured for memory
By default, the place that is used to store the tasks is located in %kernel.project_root/src/DeploymentTasks
. If you wish to change this, you simply need to override one parameter:
parameters: c0ntax_deployment_tasks.directory.tasks: '%kernel.project_dir%/src/DeploymentTasks%'
Usage
Running it is pretty simple. To run pre-deployment tasks (i.e. you have built your application but you have yet to put it live)
./bin/console deployment:tasks:run Pre
And to run post-deployment tasks (i.e. your application is now live to the world):
./bin/console deployment:tasks:run Post
Err, that's it