deployer/recipe/prestashop.php

44 lines
813 B
PHP
Raw Normal View History

<?php
namespace Deployer;
require_once __DIR__ . '/common.php';
2020-10-25 16:00:05 +01:00
add('recipes', ['prestashop']);
2020-10-29 23:16:36 +01:00
set('shared_files', [
'config/settings.inc.php',
'.htaccess',
]);
set('shared_dirs', [
2020-10-29 23:16:36 +01:00
'img',
'log',
'download',
'upload',
'translations',
'mails',
'themes/default-bootstrap/lang',
'themes/default-bootstrap/mails',
'themes/default-bootstrap/pdf/lang',
]);
set('writable_dirs', [
2020-10-29 23:16:36 +01:00
'img',
'log',
'cache',
'download',
'upload',
'translations',
'mails',
'themes/default-bootstrap/lang',
'themes/default-bootstrap/mails',
'themes/default-bootstrap/pdf/lang',
'themes/default-bootstrap/cache',
]);
2021-11-08 22:59:39 +01:00
desc('Deploys your project');
task('deploy', [
'deploy:prepare',
'deploy:vendors',
'deploy:publish',
]
2020-10-29 23:16:36 +01:00
);