-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.php
62 lines (42 loc) · 1.29 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
<?php
namespace Deployer;
require 'recipe/laravel.php';
// Project name
set('application', 'renteasy');
// Project repository
set('repository', '[email protected]:Leasary/leasary.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('leasary.com')
->user('deploy')
->set('deploy_path', '/srv/http/leasary.com');
// Tasks
task('build', function () {
run('cd {{release_path}} && build');
});
task('npm', function () {
run('cd {{release_path}} && npm ci');
});
after('deploy:vendors', 'npm');
task('npm_build', function() {
run('cd {{release_path}} && npm run production');
});
after('npm', 'npm_build');
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
task('reload:php-fpm', function () {
run('sudo /usr/sbin/service php7.4-fpm reload');
});
after('deploy', 'reload:php-fpm');
before('deploy:symlink', 'deploy:public_disk');
before('deploy:symlink', 'artisan:migrate');
task('artisan:blog:render', function () {
run('{{bin/php}} {{release_path}}/artisan blog:render');
})->once();
after('artisan:migrate', 'artisan:blog:render');