brazilianfriendsofsymfony/sync-content-bundle
Composer 安装命令:
composer require brazilianfriendsofsymfony/sync-content-bundle
包简介
Symfony BFOSSyncContentBundle
README 文档
README
This Symfony 2 bundle helps you synchronize your content with your remote server. It also deploys your application.
This bundle was inspired by sfSyncContentPlugin by Punk'Ave and MadalynnPlumBundle.
Installation
You need to install de submodule on the deps file::
// deps
[BFOSSyncContentBundle]
git=git://github.com/BrazilianFriendsOfSymfony/BFOSSyncContentBundle.git
target=/bundles/BFOS/SyncContentBundle
And then::
bash$ php bin/vendors install
Configuration
Add this to app/autoload.php::
// app/autoload.php
$loader->registerNamespaces(array(
// ...
'BFOS' => __DIR__.'/../vendor/bundles',
// ...
));
And this to app/AppKernel.php::
// app/AppKernel.php
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
$bundles[] = new BFOS\SyncContentBundle\BFOSSyncContentBundle();
}
And this to your app/config/config_dev.yml
bfos_sync_content:
options: # Global options
deployment:
rsync_exclude:
- "%kernel.root_dir%/config/rsync_exclude.txt"
pre_local_commands:
- 'php app/console assetic:dump'
post_local_commands:
- 'rm -rf web/js web/css'
#pre_remote_commands:
# - './c'
post_remote_commands:
- 'php app/console cache:clear --env=prod --no-debug --no-warmup'
- 'php app/console doctrine:schema:update --force --env=prod'
- 'php app/console assets:install web --symlink'
sync_content:
content:
- "web/uploads"
servers: "%kernel.root_dir%/config/deployment_sync_content.yml"
Example of deployment_sync_content.yml :
servers:
staging:
host: staging.mysite.com
port: 22
user: mysite
dir: /home/user/mysite
options : # Server options, override the globals
rsync_options: '-azC --force --delete --verbose --progress'
deployment:
rsync_exclude:
- "%kernel.root_dir%/config/rsync_exclude.txt"
production:
host: www.mysite.com
port: 22
user: mysite
dir: /home/user/mysite
options : # Server options, override the globals
rsync_options: '-azC --force --delete --verbose --progress'
deployment:
rsync_exclude:
- "%kernel.root_dir%/config/rsync_exclude.txt"
- "%kernel.root_dir%/config/rsync_exclude_prod.txt"
Example of rsync_exclude.txt :
# Project files
# rsync doesn't need this explicit rule, but our cloud deployment tools do
*/.svn/*
/web/uploads/*
/web/bundles/*
/app/cache/*
/app/logs/*
/web/*_dev.php
# Separate version on the server allows both prod and dev to be tested locally with the
# local one. Neither version is checked into svn for security reasons since this is a public repo
/app/config/parameters.yml
/app/config/deployment_sync_content.yml
/app/config/parameters.ini
# SCM files
.arch-params
.bzr
_darcs
.git
.hg
.monotone
.svn
.idea
CVS
Usage
How to use:
php app/console bfos:sync-content:to dev@staging
php app/console bfos:sync-content:to prod@production
php app/console bfos:deploy staging
统计信息
- 总下载量: 2.74k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2012-07-25