-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.php
72 lines (55 loc) · 1.41 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
<?php
namespace Deployer;
require 'recipe/laravel.php';
// Project name
set('application', 'my_project');
// Project repository
set('repository', 'git@gitlab.com:example/web.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', []);
set('shared_files', [
]);
set( 'writable_mode', 'chmod' );
set( 'writable_chmod_recursive', false );
set( 'writable_chmod_mode', '0777' );
set( 'allow_anonymous_stats', false );
// Writable dirs by web server
add('writable_dirs', [
'storage/tmp'
]);
set('allow_anonymous_stats', false);
// Hosts
include __DIR__ . "/autoload.php";
// Tasks
desc('Deploy your project');
task('deploy', [
'deploy:info',
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:shared',
'upload_settings',
'deploy:vendors',
'deploy:writable',
'artisan:storage:link',
'artisan:config:cache',
'artisan:route:cache',
'artisan:view:clear',
'artisan:optimize',
'artisan:migrate:all',
'artisan:elastic:migrate:all',
'deploy:symlink',
'deploy:unlock',
'opcache:reset',
'cleanup',
'artisan:asset-cdn:enable',
]);
task('build', function () {
run('cd {{release_path}} && build');
});
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');