duncrow-gmbh/deployer-recipes

duncrow-gmbh deployer recipes

1.0.0 2022-03-25 06:57 UTC

This package is auto-updated.

Last update: 2024-10-25 12:38:47 UTC


README

This repository contains recipes to integrate with deployer.

Installing

composer require deployer/recipes duncrow-gmbh/deployer-recipes --dev

Usage

Bootstrap file

Copy deploy-hosts.yml to your project root and one of the bootstrap files as your deploy.php file:

  1. deploy-contao.php – Contao 4 setup with Gulp for assets management

Pro Tips

Disable releases

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';

Contao Manager

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');

Database Helpers (Restore and release)

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.