-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.php
More file actions
63 lines (46 loc) · 1.44 KB
/
deploy.php
File metadata and controls
63 lines (46 loc) · 1.44 KB
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
<?php
namespace Deployer;
require 'recipe/laravel.php';
require 'recipe/yarn.php';
set('bin/npm', function () {
return run('which npm');
});
desc('Run Laravel Mix to create assets');
task('mix:production', function () {
run("cd {{release_path}} && {{bin/npm}} run production");
});
// Project name
set('application', 'touchstonetracker.app');
// Project repository
set('repository', 'git@github.com:suxur/touchstone-tracker-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', []);
// Writable dirs by web server
add('writable_dirs', []);
set('http_user', 'suxur');
set('http_group', 'www-data');
set('writable_mode', 'chmod');
set('writable_chmod_mode', '0777');
set('ssh_multiplexing', true);
set('allow_anonymous_stats', false);
// Hosts
host('138.68.27.217')
->user('suxur')
->set('deploy_path', '/var/www/touchstonetracker.app');
// Tasks
task('build', function () {
run('cd {{release_path}} && build');
});
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
// Migrate database before symlink new release.
before('deploy:symlink', 'artisan:migrate');
task('reload:php-fpm', function () {
run('sudo /usr/sbin/service php7.4-fpm reload');
});
after('artisan:migrate', 'yarn:install');
after('yarn:install', 'mix:production');
after('deploy', 'reload:php-fpm');