-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.php
71 lines (57 loc) · 1.52 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
<?php
namespace Deployer;
require 'recipe/common.php';
// Project name
set('application', '{=folderName=}');
set('release_name', function () {
return (string) run('date +"%s"');
});
set('projects', 'bwp_projects');
set('projects-staging', 'bwp_projects-staging');
// Project repository
set('repository', '{=projectRepo=}');
// [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', []);
set('allow_anonymous_stats', false);
// Hosts
host('staging')
->hostname({=serverIP=})
->stage('staging')
->set('branch', 'staging')
->user('bitnami')
->port(22)
->identityFile('~/.ssh/id_rsa')
->forwardAgent(true)
->multiplexing(true)
->set('deploy_path', '~/{{projects-staging}}/{{application}}');
host('production')
->hostname({=serverIP=})
->stage('production')
->set('branch', 'master')
->user('bitnami')
->port(22)
->identityFile('~/.ssh/id_rsa')
->forwardAgent(true)
->multiplexing(true)
->set('deploy_path', '~/{{projects}}/{{application}}');
/**
* Main task
*/
task('deploy', [
'deploy:info',
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:symlink',
'deploy:unlock',
'cleanup',
])->desc('Deploy your project');
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
after('deploy', 'success');