-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeploy.php
85 lines (60 loc) · 1.89 KB
/
deploy.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
namespace Deployer;
require 'recipe/laravel.php';
require 'recipe/cachetool.php';
// Project name
set('application', 'staging');
// Project repository
set('repository', '[email protected]:omego/sts.git');
// [Optional] Allocate tty for git clone. Default value is false.
set('git_tty', true);
// Shared files/dirs between deploys
add('shared_files', []);
add('shared_dirs', []);
// Writable dirs by web server
add('writable_dirs', []);
// Hosts
// host('68.183.60.58')
// ->user('deployer')
// ->stage('staging')
// ->set('branch', 'development')
// ->identityFile('~/.ssh/deployerkey')
// ->set('deploy_path', '/var/www/staging');
// host('68.183.60.58')
// ->user('deployer')
// ->stage('production')
// ->identityFile('~/.ssh/deployerkey')
// ->set('deploy_path', '/var/www/sts');
host('staging')
->hostname('68.183.60.58')
->stage('staging')
->set('branch', 'development')
->user('deployer')
->identityFile('~/.ssh/deployerkey')
->set('deploy_path', '/var/www/staging')
;
host('production')
->hostname('68.183.60.58/test')
->user('deployer')
->stage('production')
->set('branch', 'master')
// ->user('production_user')
->identityFile('~/.ssh/deployerkey')
->set('deploy_path', '/var/www/sts')
;
// Tasks
task('build', function () {
run('cd {{release_path}} && build');
});
task('supervisor:reload', function () {
run("cd {{release_path}} && supervisorctl reload");
});
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
// Migrate database before symlink new release.
before('deploy:symlink', 'artisan:migrate');
// Horizon and Msgraph clear.
after('artisan:migrate', 'artisan:horizon:terminate');
after('deploy:symlink', 'cachetool:clear:opcache');
after('cachetool:clear:opcache', 'supervisor:reload');
after('supervisor:reload', 'artisan:config:clear');