-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.php
98 lines (78 loc) · 2.15 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
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
namespace Deployer;
require 'recipe/laravel.php';
require 'vendor/deployer/recipes/recipe/yarn.php';
require 'vendor/deployer/recipes/recipe/cachetool.php';
// Project name
set('application', 'yoga');
// Project repository
set('repository', '[email protected]:yanster18/yoga_app.git');
// [Optional] Allocate tty for git clone. Default value is false.
set('git_tty', true);
// Shared files/dirs between deploys
add('shared_files', [
'.env'
]);
add('shared_dirs', [
'storage'
]);
// Writable dirs by web server
add('writable_dirs', [
'bootstrap/cache',
'storage',
'storage/app',
'storage/app/public',
'storage/framework',
'storage/framework/cache',
'storage/framework/sessions',
'storage/framework/views',
'storage/logs',
]);
desc('Build frontend for production');
task('yarn:prod', function () {
run("cd {{release_path}} && {{bin/yarn}} production");
});
// Hosts
host('yoga.yanster.one')
->stage('production')
->user('yanster')
->set('deploy_path', '/home/yanster/apps/yoga/')
->set('cachetool', '/var/run/php/php7.2-fpm-yoga.sock');
// Tasks
desc('Execute artisan db:seed');
task('artisan:db:seed', function () {
$output = run('{{bin/php}} {{release_path}}/artisan db:seed --force');
writeln('<info>' . $output . '</info>');
});
//env for production
task('upload:env', function () {
upload('.env.production', '{{deploy_path}}/shared/.env');
})->desc('Environment setup');
task('build', function () {
run('cd {{release_path}} && build');
});
task('deploy', [
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'upload:env',
'deploy:shared',
'deploy:vendors',
'deploy:writable',
'artisan:storage:link',
'artisan:view:clear',
'artisan:cache:clear',
'artisan:config:cache',
'artisan:migrate',
'yarn:install',
'yarn:prod',
'deploy:symlink',
'deploy:unlock',
'cleanup',
]);
after('deploy:symlink', 'cachetool:clear:opcache');
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
// Migrate database before symlink new release.
before('deploy:symlink', 'artisan:migrate');