mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-22 08:12:29 +01:00
72 lines
1.8 KiB
PHP
72 lines
1.8 KiB
PHP
<?php
|
|
namespace Deployer;
|
|
|
|
require_once __DIR__ . '/common.php';
|
|
|
|
add('recipes', ['symfony']);
|
|
|
|
set('symfony_version', function () {
|
|
$result = run('{{bin/console}} --version');
|
|
preg_match_all('/(\d+\.?)+/', $result, $matches);
|
|
return $matches[0][0] ?? 5.0;
|
|
});
|
|
|
|
set('shared_dirs', [
|
|
'var/log',
|
|
]);
|
|
|
|
set('shared_files', [
|
|
'.env.local'
|
|
]);
|
|
|
|
set('writable_dirs', [
|
|
'var',
|
|
'var/cache',
|
|
'var/log',
|
|
'var/sessions',
|
|
]);
|
|
|
|
set('log_files', 'var/log/*.log');
|
|
|
|
set('migrations_config', '');
|
|
|
|
set('doctrine_schema_validate_config', '');
|
|
|
|
set('bin/console', '{{bin/php}} {{release_or_current_path}}/bin/console');
|
|
|
|
set('console_options', function () {
|
|
return '--no-interaction';
|
|
});
|
|
|
|
desc('Migrates database');
|
|
task('database:migrate', function () {
|
|
$options = '--allow-no-migration';
|
|
if (get('migrations_config') !== '') {
|
|
$options = "$options --configuration={{release_or_current_path}}/{{migrations_config}}";
|
|
}
|
|
|
|
run("cd {{release_or_current_path}} && {{bin/console}} doctrine:migrations:migrate $options {{console_options}}");
|
|
});
|
|
|
|
desc('Validate the Doctrine mapping files');
|
|
task('doctrine:schema:validate', function () {
|
|
run("cd {{release_or_current_path}} && {{bin/console}} doctrine:schema:validate {{doctrine_schema_validate_config}} {{console_options}}");
|
|
});
|
|
|
|
desc('Clears cache');
|
|
task('deploy:cache:clear', function () {
|
|
// composer install scripts usually clear and warmup symfony cache
|
|
// so we only need to do it if composer install was run with --no-scripts
|
|
if (false !== strpos(get('composer_options', ''), '--no-scripts')) {
|
|
run('{{bin/console}} cache:clear {{console_options}}');
|
|
}
|
|
});
|
|
|
|
desc('Deploys project');
|
|
task('deploy', [
|
|
'deploy:prepare',
|
|
'deploy:vendors',
|
|
'deploy:cache:clear',
|
|
'deploy:publish',
|
|
]);
|