1 Star 0 Fork 0

视迅速达/ad-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
deploy.php 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
陈圣文 提交于 2020-09-13 01:30 . auto commit by deploy
<?php
namespace Deployer;
require 'recipe/laravel.php';
// Project name
set('application', 'ad-test');
// Project repository
set('repository', 'https://gitee.com/subowen/ad-test');
// [Optional] Allocate tty for git clone. Default value is false.
set('git_tty', true);
set('default_stage', 'local');
// Shared files/dirs between deploys
add('shared_files', []);
add('shared_dirs', []);
// Writable dirs by web server
add('writable_dirs', []);
// Hosts
host('122.112.185.206')
->user('chenshengwen')
->stage('prod')
->set('deploy_path', '/hwdata/www/{{application}}');
localhost()
->stage('local')
->roles('test', 'build');
// Tasks
task('git:push', function() {
writeln('start git push task');
run('git add .');
run('git commit -m "auto commit by deploy"');
run('git push origin master');
});
task('build', function () {
run('cd {{release_path}} && build');
});
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
// Migrate database before symlink new release.
// before('deploy:symlink', 'artisan:migrate');
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/subowen/ad-test.git
git@gitee.com:subowen/ad-test.git
subowen
ad-test
ad-test
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385