-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.php
More file actions
46 lines (32 loc) · 1014 Bytes
/
deploy.php
File metadata and controls
46 lines (32 loc) · 1014 Bytes
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
<?php
namespace Deployer;
require 'recipe/symfony4.php';
// Project name
set('application', 'symfony-test');
// Project repository
set('repository', 'https://github.com/Dimashaman/symfony-test.git');
// [Optional] Allocate tty for git clone. Default value is false.
set('git_tty', false);
set('ssh_multiplexing', false);
set('branch', 'work_on_errors');
// Shared files/dirs between deploys
add('shared_files', []);
add('shared_dirs', []);
// Writable dirs by web server
add('writable_dirs', []);
// Hosts
host('176.99.11.239')
->set('deploy_path', '/var/www/deployment')
->user('deploy');
// Tasks
task('build', function () {
run('cd {{release_path}} && build');
});
task('reload:php-fpm', function () {
run('sudo /usr/sbin/service php8.0-fpm reload');
});
after('deploy', 'reload:php-fpm');
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
// Migrate database before symlink new release.
before('deploy:symlink', 'database:migrate');