-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.php
55 lines (40 loc) · 1.36 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
<?php
namespace Deployer;
require 'recipe/laravel.php';
require 'contrib/npm.php';
set('bin/php', 'php8.2');
set('bin/composer', '{{bin/php}} $(which composer)');
set('writable_mode', 'chmod');
// Project name
set('application', 'mkg-ornament');
// Project repository
set('repository', 'git@github.com:igor-kamil/mkg-ornament.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', ['storage', 'resources/fonts']);
// Writable dirs by web server
add('writable_dirs', []);
set('allow_anonymous_stats', false);
// Hosts
host('igo')
->set('hostname', 'igo')
->set('deploy_path', '/home/igo.sk/private/mkg-ornament');
// Tasks
task('build', function () {
cd('{{release_path}}');
run('npm ci && npm run build');
});
desc('Composer dump autoload');
task('composer:dump:autoload', function () {
run('cd {{release_path}} && composer dump-autoload');
});
desc('Creates the symbolic links configured for the application');
task('artisan:storage:link', artisan('storage:link --relative', ['min' => 5.3]));
// Hooks
before('artisan:migrate', 'artisan:cache:clear');
before('artisan:migrate', 'composer:dump:autoload');
after('deploy:vendors', 'build');
// after('deploy:symlink', 'artisan:queue:restart');
after('deploy:failed', 'deploy:unlock');