2018-06-26 07:27:32 +02:00
|
|
|
<?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',
|
|
|
|
]);
|
2018-06-26 07:27:32 +02:00
|
|
|
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',
|
|
|
|
]);
|
2018-06-26 07:27:32 +02:00
|
|
|
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',
|
|
|
|
]);
|
2018-06-26 07:27:32 +02:00
|
|
|
|
2021-11-08 22:59:39 +01:00
|
|
|
desc('Deploys your project');
|
2018-06-26 07:27:32 +02:00
|
|
|
task('deploy', [
|
2020-10-08 01:53:45 +02:00
|
|
|
'deploy:prepare',
|
2018-06-26 07:27:32 +02:00
|
|
|
'deploy:vendors',
|
2020-10-08 01:53:45 +02:00
|
|
|
'deploy:publish',
|
2018-06-26 07:27:32 +02:00
|
|
|
]
|
2020-10-29 23:16:36 +01:00
|
|
|
);
|