This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeploy.php
75 lines (61 loc) · 1.45 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
<?php
namespace Deployer;
require 'recipe/common.php';
// Project name
set('application', '');
set('path', '{{application}}');
// Project repository
set('repository', '');
// [Optional] Allocate tty for git clone. Default value is false.
set('git_tty', false);
// Shared files/dirs between deploys
set('shared_files', [
'error_log',
'app/config/config.ini'
]);
set('shared_dirs', [
]);
// Writable dirs by web server
set('writable_dirs', []);
set('default_stage', 'production');
// set('keep_releases', 5);
// Hosts
host('{{}}')
->port()
->set('deploy_path', '{{path}}')
->user('user')
->set('branch', 'master')
->stage('production')
->identityFile('');
task('vendor', function(){
run('cd {{release_path}} && {{bin/composer}} {{composer_options}}');
});
task('upload', function(){
upload(".env.prod", "{{release_path}}/.env");
});
task('migrate', function(){
run('{{release_path}}');
run('php alpha db:migrate');
// can run a rollback and seed in this task
});
// Tasks
desc('Deploy your project');
task('deploy', [
'deploy:info',
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:writable',
'upload',
'vendor',
'migrate',
'deploy:clear_paths',
'deploy:symlink',
'deploy:unlock',
'cleanup',
'success'
]);
// [Optional] If deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');