Skip to content

DarvinStudio/DarvinDatabaserBundle

Repository files navigation

DarvinDatabaserBundle

This bundle integrates "darvinstudio/databaser" with Symfony. It allows to easily pull remote database into the local one or push local database into the remote one.

Installation

  1. Install package using Composer:
$ composer require darvinstudio/darvin-databaser-bundle
  1. Register bundle in your AppKernel class:
// app/AppKernel.php

public function registerBundles()
{
    $bundles = [
        // ...
        new Darvin\DatabaserBundle\DarvinDatabaserBundle(),
        // ...
    ];
}

Usage

Pull database

$ /usr/bin/env php bin/console databaser:pull [-k|--key [KEY]] [-p|--password] [-P|--port [PORT]] <user@host> <project_path_remote> [<project_path_local>]

Examples:

$ /usr/bin/env php bin/console databaser:pull root@example.com www/example.com
$ /usr/bin/env php bin/console databaser:pull -P 123 root@example.com /var/www/example.com

Push database

$ /usr/bin/env php bin/console databaser:push [-k|--key [KEY]] [-p|--password] [-P|--port [PORT]] <user@host> <project_path_remote> [<project_path_local>]

Examples:

$ /usr/bin/env php bin/console databaser:push root@example.com www/example.com
$ /usr/bin/env php bin/console databaser:push -P 123 root@example.com /var/www/example.com

About

This bundle integrates "darvinstudio/databaser" with Symfony.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages