当前位置: 首页 > 后端技术 > PHP

Deployer配方中的Laravel配置文件

时间:2023-03-29 20:07:14 PHP

1laravel.phprecipe目录包含常用框架的部署配置文件。这里以Laravel框架的部署配置为例进行分析。在laravel.php中,主要配置了laravel框架的相关目录。artisan:upartisan:downartisan:migrateartisan:migrate:freshartisan:migrate:rollbackartisan:migrate:statusartisan:db:seedartisan:cache:clearartisan:config:cacheartisan:route:cacheartisan:view:clearartisan:optimizeartisan:queue:Restartartisan:storage常用命令:linkdeploy:public_disk然后定义larvaeldeploy2common.php的部署过程公共配置首先在配置文件recipe\laravel.php中引入公共配置文件common.php;recipe\common.php需要__DIR__。'/config/current.php';需要__DIR__。'/config/dump.php';需要__DIR__。'/config/hosts.php';需要__DIR__。'/deploy/info.php';需要__DIR__。'/deploy/prepare.php';需要__DIR__。'/deploy/lock.php';需要__DIR__。'/deploy/release.php';需要__DIR__。'/deploy/update_code.php';需要__DIR__。.'/deploy/shared.php';需要__DIR__。'/部署y/writable.php';require__DIR__.'/deploy/vendors.php';require__DIR__.'/deploy/symlink.php';require__DIR__.copy_dirs.php';require__DIR__.'/deploy/rollback.php';common.phpThepublicconfigurationfileloadstheconfigurationfilesundertheconfiganddeploydirectories,andalsodefinesseveralcommonvariableinformationhostnameusertargetcommonconfiguration参数keep_releaseserepositoryshared_dirsshared_filescopy_dirswirtable_dirswritable_modewritable_use_sudowritable_chmod_modewritable_chmod_recursivehttp_userhttp_groupclear_pathsclear_use_sudouse_atomic_symlinkcomposer_actioncomposer_optionsenvcurrrent_path常用命令bin/phpbin/gitbin/composerbin/symlink选项参数tagrevisionbranch两个命令sucessdeploy:failed3config的配置文件1current.php查看当前工作目录命令config:current2dump.php查看配置信息命令config:dump3hosts.phptoviewallhostcommandsconfig:hosts4deployconfigurationfiledeploydirectoryisconfiguredwithcommonlyusedcommandsindeploymentThesecommandsarerelatedtotheparametersofcommon.php.phpsynchronouscopydirectorydeploy:copy_dirs4info.phpgetparameterinformationdeploy:info5lock.phpcreatelockfiledeploy:lock6prepare.php创建基础目录deploy:prepare7release.php部署新版本deploy:release8shared.php9symlink.php10update_code.php11vendors.php12writable.php5总结整体配置文件分为config和deploy三个层次级别规定常用命令common.php指定常用参数laravel.php指定laravel框架的参数及部署流程-2018.4.821:47