brazilianfriendsofsymfony / sync-content-bundle
Symfony BFOSSyncContentBundle
Installs: 2 739
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- symfony/console: >=2.1
- symfony/finder: >=2.2.0
- symfony/framework-bundle: >=2.2
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-11-09 16:21:56 UTC
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