mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 00:32:25 +01:00
16 lines
300 B
PHP
16 lines
300 B
PHP
<?php
|
|
namespace Deployer;
|
|
|
|
require_once __DIR__ . '/common.php';
|
|
|
|
set('shared_files', ['configuration.php']);
|
|
set('shared_dirs', ['images']);
|
|
set('writable_dirs', ['images']);
|
|
|
|
task('deploy', [
|
|
'deploy:prepare',
|
|
'deploy:publish',
|
|
])->desc('Deploy your project');
|
|
|
|
after('deploy', 'success');
|