This repository contains recipes to integrate with deployer.
composer require deployer/recipes terminal42/deployer-recipes:dev-main@dev --dev
Include recipes in your deploy.php
file:
require 'recipe/contao.php';
require 'recipe/database.php';
require 'recipe/deploy.php';
require 'recipe/encore.php'; // or 'recipe/gulp.php';
require 'recipe/maintenance.php';
Copy deploy-hosts.yml
to your project root and one of
the bootstrap files as your deploy.php
file:
contao4-encore.php
– Contao 4 setup with Encore for assets managementcontao4-gulp.php
– Contao 4 setup with Gulp for assets management
If you would like to disable the releases (e.g. for a dev system) you can do it simply by including the recipe:
require 'recipe/disable-releases.php';
Although Contao Manager seems to be redundant if the system can be deployed, you may still want to install it e.g. for trakked.io. To do that, simply add the following task to the list:
task('deploy', [
// …
'maintenance:enable',
+ 'contao:download_manager'
// …
])->desc('Deploy your project');
This collection provides a tasks to easily restore/release the database dev <-> live
unidirectionally.
First, include the database-helpers.php
recipe.
You can use the command dep database:retrieve example.com
to download a database dump from remote (example.com) and overwrite the local database.
You can use the command dep database:release example.com
to overwrite the remote (example.com) datbase with the local one.
- https://deployer.org/docs/
- https://deployer.org/recipes.html
- https://github.com/eikona-media/deployer-recipes
Licensed under the MIT license.