* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ require_once __DIR__ . '/common.php'; // CodeIgniter shared dirs set('shared_dirs', ['application/cache', 'application/logs']); // CodeIgniter writable dirs set('writable_dirs', ['application/cache', 'application/logs']); /** * Main task */ task('deploy', [ 'deploy:prepare', 'deploy:release', 'deploy:update_code', 'deploy:vendors', 'deploy:shared', 'deploy:symlink', 'cleanup', ])->desc('Deploy your project'); after('deploy', 'success');