This repository was archived by the owner on May 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.php
More file actions
66 lines (47 loc) · 1.45 KB
/
deploy.php
File metadata and controls
66 lines (47 loc) · 1.45 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
64
65
66
<?php
namespace Deployer;
require 'recipe/laravel.php';
// require 'recipe/npm.php';
// Project name
set('application', 'Voyage-web');
// Project repository
set('repository', 'git@github.com:ics3-1projects/Voyage-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', []);
// Hosts
host('188.166.89.126')
->user('deployer')
->set('deploy_path', '/var/www/voyage.com/html/Voyage-web');
// Tasks
task('build', function () {
run('cd {{release_path}} && build');
});
// after('deploy:update_code', 'npm:install');
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
desc('Install passport');
task('artisan:passport:install', function () {
run('{{bin/php}} {{release_path}}/artisan passport:install');
});
desc('Install voyager admin');
task('artisan:voyager:install', function () {
run('{{bin/php}} {{release_path}}/artisan voyager:install --force');
});
// build npm
task('npm:run:prod', function () {
run("cd {{release_path}} && npm install && npm run prod");
});
// install extensions and migrate db
task('extensions', [
'artisan:migrate',
'artisan:passport:install',
'artisan:voyager:install',
'npm:run:prod'
]);
// Migrate database before symlink new release.
before('deploy:symlink', 'extensions');