hmillet / backup-commands-bundle
Provides backup commands for your Symfony application, with the ability to push backup files to a dropbox
Installs: 1 133
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- kunalvarma05/dropbox-php-sdk: ^0.2.0
- symfony/symfony: >=3.0
This package is not auto-updated.
Last update: 2025-03-10 09:02:02 UTC
README
This bundle provides symfony console commands that allow you to backup your database and your files in your dropbox
Installation
Step 1
Using Composer
Add the following code to your composer.json :
"require": {
...
"hmillet/backup-commands-bundle": "dev-master"
...
},
Run a Composer update
$ php composer.phar update
Step 2
Register the bundle in the AppKernel.php
file :
public function registerBundles()
{
$bundles = array(
...
new Hmillet\BackupCommandsBundle\HmilletBackupCommandsBundle(),
...
);
return $bundles;
}
Step 3 (optionnal)
Add parameters and configuration for the bundle, so it can read and write to your dropbox.
First of all, you have to get an access token. In order to get it, just run :
php app/console dropbox:setup
in app/config/parameters.yml-dist (otherwise, "composer.phar update" will remove your parameter from parameters.yml), add the line :
backup_dropbox_access_token: ~
in app/config/parameters.yml, add the line given by the above command :
backup_dropbox_access_token: your token
in app/config/config.yml, add the lines :
hmillet_backup_commands:
dropbox:
access_token: %backup_dropbox_access_token%
Requirements
This bundle needs (in local and remote server)
- mysql (commandline)
- mysqldump (commandline)
- bunzip2 (commandline)
See the Getting Started page of the dropbox-sdk-php library.
Command line
Now from your console you can run
./app/console db:dump
and see that a new file has been saved in folder /app/tmp/dump with an hard link to the newest one.
You can run
./app/console db:restore
and choose which file you want to restore.