forked from leehave/WebStack-Laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.php
43 lines (31 loc) · 934 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
39
40
41
42
43
<?php
namespace Deployer;
require 'recipe/laravel.php';
// Project name
set('application', 'WebStack-Laravel');
// Project repository
set('repository', 'https://github.com/hui-ho/WebStack-Laravel.git');
// Shared files/dirs between deploys
add('shared_files', []);
add('shared_dirs', []);
// Writable dirs by web server
set('writable_dirs', []);
set('keep_releases', 5);
// Hosts
host('101.37.175.145')
->stage('develop')
->user('root')
->port(22)
->identityFile('/Users/hui-ho/.ssh/id_rsa')
->become('www-data')
->set('branch', 'develop')
->set('deploy_path', '/var/www/webstack');
// Tasks
desc('Upload .env file');
task('env:upload', function() {
upload('.env.develop', '{{release_path}}/.env');
});
after('deploy:shared', 'env:upload');
after('deploy:failed', 'deploy:unlock');
before('deploy:symlink', 'artisan:migrate:fresh');
after('artisan:migrate:fresh', 'artisan:db:seed');