mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 16:54:08 +01:00
146 lines
3.4 KiB
PHP
146 lines
3.4 KiB
PHP
<?php
|
|
/* (c) Anton Medvedev <anton@medv.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Deployer;
|
|
|
|
require_once __DIR__ . '/common.php';
|
|
|
|
|
|
/**
|
|
* Symfony Configuration
|
|
*/
|
|
|
|
// Symfony build set
|
|
set('env', 'prod');
|
|
|
|
// Symfony shared dirs
|
|
set('shared_dirs', ['app/logs']);
|
|
|
|
// Symfony shared files
|
|
set('shared_files', ['app/config/parameters.yml']);
|
|
|
|
// Symfony writable dirs
|
|
set('writable_dirs', ['app/cache', 'app/logs']);
|
|
|
|
// Clear paths
|
|
set('clear_paths', ['web/app_*.php', 'web/config.php']);
|
|
|
|
// Assets
|
|
set('assets', ['web/css', 'web/images', 'web/js']);
|
|
|
|
// Requires non symfony-core package `kriswallsmith/assetic` to be installed
|
|
set('dump_assets', false);
|
|
|
|
// Environment vars
|
|
set('env_vars', 'SYMFONY_ENV={{env}}');
|
|
|
|
// Adding support for the Symfony3 directory structure
|
|
set('bin_dir', 'app');
|
|
set('var_dir', 'app');
|
|
|
|
// Symfony console bin
|
|
set('bin/console', function () {
|
|
return sprintf('{{release_path}}/%s/console', trim(get('bin_dir'), '/'));
|
|
});
|
|
|
|
// Symfony console opts
|
|
set('console_options', function () {
|
|
$options = '--no-interaction --env={{env}}';
|
|
|
|
return get('env') !== 'prod' ? $options : sprintf('%s --no-debug', $options);
|
|
});
|
|
|
|
|
|
/**
|
|
* Create cache dir
|
|
*/
|
|
task('deploy:create_cache_dir', function () {
|
|
// Set cache dir
|
|
set('cache_dir', '{{release_path}}/' . trim(get('var_dir'), '/') . '/cache');
|
|
|
|
// Remove cache dir if it exist
|
|
run('if [ -d "{{cache_dir}}" ]; then rm -rf {{cache_dir}}; fi');
|
|
|
|
// Create cache dir
|
|
run('mkdir -p {{cache_dir}}');
|
|
|
|
// Set rights
|
|
run("chmod -R g+w {{cache_dir}}");
|
|
})->desc('Create cache dir');
|
|
|
|
|
|
/**
|
|
* Normalize asset timestamps
|
|
*/
|
|
task('deploy:assets', function () {
|
|
$assets = implode(' ', array_map(function ($asset) {
|
|
return "{{release_path}}/$asset";
|
|
}, get('assets')));
|
|
|
|
run(sprintf('find %s -exec touch -t %s {} \';\' &> /dev/null || true', $assets, date('Ymdhi.s')));
|
|
})->desc('Normalize asset timestamps');
|
|
|
|
|
|
/**
|
|
* Install assets from public dir of bundles
|
|
*/
|
|
task('deploy:assets:install', function () {
|
|
run('{{env_vars}} {{bin/php}} {{bin/console}} assets:install {{console_options}} {{release_path}}/web');
|
|
})->desc('Install bundle assets');
|
|
|
|
|
|
/**
|
|
* Dump all assets to the filesystem
|
|
*/
|
|
task('deploy:assetic:dump', function () {
|
|
if (get('dump_assets')) {
|
|
run('{{env_vars}} {{bin/php}} {{bin/console}} assetic:dump {{console_options}}');
|
|
}
|
|
})->desc('Dump assets');
|
|
|
|
|
|
/**
|
|
* Warm up cache
|
|
*/
|
|
task('deploy:cache:warmup', function () {
|
|
run('{{env_vars}} {{bin/php}} {{bin/console}} cache:warmup {{console_options}}');
|
|
})->desc('Warm up cache');
|
|
|
|
|
|
/**
|
|
* Migrate database
|
|
*/
|
|
task('database:migrate', function () {
|
|
run('{{env_vars}} {{bin/php}} {{bin/console}} doctrine:migrations:migrate {{console_options}} --allow-no-migration');
|
|
})->desc('Migrate database');
|
|
|
|
|
|
/**
|
|
* Main task
|
|
*/
|
|
task('deploy', [
|
|
'deploy:prepare',
|
|
'deploy:lock',
|
|
'deploy:release',
|
|
'deploy:update_code',
|
|
'deploy:clear_paths',
|
|
'deploy:create_cache_dir',
|
|
'deploy:shared',
|
|
'deploy:assets',
|
|
'deploy:vendors',
|
|
'deploy:assets:install',
|
|
'deploy:assetic:dump',
|
|
'deploy:cache:warmup',
|
|
'deploy:writable',
|
|
'deploy:symlink',
|
|
'deploy:unlock',
|
|
'cleanup',
|
|
])->desc('Deploy your project');
|
|
|
|
// Display success message on completion
|
|
after('deploy', 'success');
|