forked from deployphp/deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyii2-app-advanced.php
54 lines (46 loc) · 1.17 KB
/
yii2-app-advanced.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace Deployer;
require_once __DIR__ . '/common.php';
/**
* Yii 2 Advanced Project Template configuration
*/
// Yii 2 Advanced Project Template shared dirs
set('shared_dirs', [
'frontend/runtime',
'backend/runtime',
'console/runtime',
]);
// Yii 2 Advanced Project Template shared files
set('shared_files', [
'common/config/main-local.php',
'common/config/params-local.php',
'frontend/config/main-local.php',
'frontend/config/params-local.php',
'backend/config/main-local.php',
'backend/config/params-local.php',
'console/config/main-local.php',
'console/config/params-local.php',
]);
/**
* Initialization
*/
task('deploy:init', function () {
run('{{bin/php}} {{release_path}}/init --env=Production --overwrite=n');
})->desc('Initialization');
/**
* Run migrations
*/
task('deploy:run_migrations', function () {
run('{{bin/php}} {{release_path}}/yii migrate up --interactive=0');
})->desc('Run migrations');
/**
* Main task
*/
task('deploy', [
'deploy:prepare',
'deploy:vendors',
'deploy:init',
'deploy:run_migrations',
'deploy:publish',
])->desc('Deploy your project');
after('deploy', 'success');