ongoing/deployer-base
Composer 安装命令:
composer require ongoing/deployer-base
包简介
README 文档
README
A base with common used tasks to use in your deployer project.
Getting started
Installing
Install using composer
composer require ongoing/deployer-base
Setup
Include the vendor/ongoing/deployer-base/symfony*.php file in your deployer.php based on your symfony version.
symfony.php // symfony 2.x
symfony3.php // symfony 3.x
symfony4.php // symfony 4.x|5.x
##Configurations
###Project specific configuration
Project specific configuration should be placed in your deploy.php file.
Example:
// application name
set('application', 'application-name');
// source repository
set('repository', 'git@github.com:user/repo.git');
// console path (only if it differs from the default in your symfony version
set('console_path', 'bin/console');
// sentry organisation
set('sentry_organisation', 'oranisation-name');
// sentry project
set('sentry_project', 'sentry-project');
// config name for translation:extract command
set('translation_app_name', 'app');
// locale to extract translations in
set('translation_locale', 'en');
User specific configuration
User specific configuration should be defined in environment variables.
Example:
SENTRY_TOKEN=your-token
PRIVATE_KEY=~/.ssh/id_rsa
Tasks
The deployer-base contains many tasks. Here's a basic example of a fully functional deployment configuration.
task('deploy', [
'deploy:info',
'deploy:prepare',
'deploy:lock',
'deploy:release',
'deploy:update_code',
'deploy:shared',
'deploy:vendors',
'deploy:build:assets', // build assets on the server
'deploy:writable',
'translation:extract', // extract tokens
'deploy:cache:clear',
'deploy:schema_update', // updates the database schema. Will show a preview and ask for confirmation.
'deploy:cache:warmup',
'deploy:symlink',
'reload:php-fpm', // used on nine servers to clear the fpm cache
'deploy:unlock',
'deploy:tag', // tags the current release in your repository
'deploy:sentry',
'cleanup',
]);
Additional tasks
Build assets local
You can build assets local using the deploy:build:assets_local command instead of deploy:build:assets.
The assets will be built and commited to the repository.
Run database migrations
If you use migrations in your project you can replace deploy:schema_update with database:migrate.
ongoing/deployer-base 适用场景与选型建议
ongoing/deployer-base 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.05k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 02 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 ongoing/deployer-base 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ongoing/deployer-base 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.05k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2020-02-05