PHP code example of liquidlight / deployer-typo3-ci

1. Go to this page and download the library: Download liquidlight/deployer-typo3-ci library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

liquidlight / deployer-typo3-ci example snippets


host('production')
  ->set('hostname', 'client.xxx')
;

on(select('instance=production'), function ($host) {
	after('cache:clear_php_cli', 'cache:clear_php_http');
});

set('db_allow_push_live', true);

set('writable_use_sudo', true);
set('cleanup_use_sudo', true);
set('writable_mode', 'chgrp');
set('http_group', 'www-data');

after('typo3:cache:flush:pages', 'deploy:vps:writable');



namespace Deployer;

oader();