-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.php.dist
43 lines (33 loc) · 1.05 KB
/
deploy.php.dist
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
<?php
namespace Deployer;
require 'recipe/symfony4.php';
require 'recipe/yarn.php';
// Project name
set('application', 'Aktak');
// Project repository
set('repository', 'https://github.com/ikerib/aktak.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', ['var/log','var/cache','public/uploads']);
set('env', [
'APP_ENV' => 'prod',
]);
// Writable dirs by web server
add('writable_dirs', ['var','public/uploads']);
set('allow_anonymous_stats', false);
// Hosts
host('XXX.XXX.XXX.XXX')
->user('USER')
->set('branch', 'master')
->set('deploy_path', '/var/www/aktak');
after('deploy:symlink', 'yarn:install');
task('yarn:prod', function (){
run("cd {{release_path}} && yarn encore prod");
});
after('yarn:install','yarn:prod');
// Migrate database before symlink new release.
//before('deploy:symlink', 'database:migrate');
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');