-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.php
38 lines (28 loc) · 877 Bytes
/
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
<?php
namespace Deployer;
require 'recipe/laravel.php';
// Project name
set('application', 'ginery');
// Project repository
set('repository', '[email protected]:bkhrupa/ginery.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('lizard-if-ua')
->stage('prod')
->set('writable_mode', 'chmod')
->set('branch', 'develop')
->set('deploy_path', '~/ginery-bill.lizard.if.ua');
// Tasks
// Events
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
before('deploy:symlink', 'artisan:down');
// Migrate database before symlink new release.
after('artisan:down', 'artisan:migrate');
after('cleanup', 'artisan:up');