-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeploy.php.dist
48 lines (34 loc) · 1.3 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
44
45
46
47
48
<?php
namespace Deployer;
require 'recipe/wordpress.php';
// Project name
set('application', '${PROJECT_NAME}');
set('repository', '[email protected]:${GITHUB_NAME}/${PROJECT_REPO}');
set('git_tty', true);
set('shared_files', ['wp-config.php', '.htaccess', '.htpasswd']);
set('shared_dirs', ['wp-content/uploads', 'logs']);
add('writable_dirs', []);
// Hosts
host('prod')
->set('branch', 'main')
->set('hostname', 'hostname or ssh name')
->set('deploy_path', '/var/www/yourproject');
// Hooks
after('deploy:failed', 'deploy:unlock');
task('deploy:writable')->disable();
desc('Remove all uneeded files');
task('remove', function () {
run("rm -rf {{release_path}}/docker {{release_path}}/.env {{release_path}}/.git* {{release_path}}/deploy.php {{release_path}}/docker-compose.yml {{release_path}}/Makefile {{release_path}}/wp-cli.yml*");
});
after('deploy:cleanup', 'remove');
//desc('Composer install');
//task('deploy:composer_install', function () {
// run("cd '{{release_path}}'; composer install");
//});
//before('deploy:symlink', 'deploy:composer_install');
// If ACF with automatic fields sync
//desc('Update ACF fields from files');
//task('deploy:acf_update', function () {
// run("cd '{{release_path}}'; wp acf clean --database; wp acf import --all");
//});
//after('deploy:symlink', 'acf_update');