-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.php
50 lines (36 loc) · 1.14 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
<?php
namespace Deployer;
require 'recipe/laravel.php';
// Project name
set('application', 'my_project');
// Project repository
set('repository', '[email protected]:username/repository.git');
set('ssh_multiplexing', false);
// [Optional] Allocate tty for git clone. Default value is false.
set('git_tty', false);
// Shared files/dirs between deploys
add('shared_files', []);
add('shared_dirs', []);
// Writable dirs by web server
add('writable_dirs', []);
// Hosts
// xsc
//host('[email protected]')
// ->set('deploy_path', '/var/www');
// 006
host('[email protected]')
->set('deploy_path', '/var/www');
// 007
host('[email protected]')
->set('deploy_path', '/var/www');
// 008
host('[email protected]')
->set('deploy_path', '/var/www');
// Tasks
task('update', function () {
run('cd /var/www/ershou-platform && git pull && chown -R nginx:nginx . && chmod -R 777 storage && echo "" > storage/logs/laravel.log && rm -f public/storage/*.jpg');
});
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
// Migrate database before symlink new release.
before('deploy:symlink', 'artisan:migrate');