Project

backy_rb

0.0
There's a lot of open issues
Backy is a comprehensive database backup solution for Ruby on Rails applications, created to help developers manage and safeguard their data with ease. This robust gem offers a wide range of features
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 3.1
>= 4.0
~> 3.0
~> 5.4
~> 3.0
~> 1.44
~> 0.6.0
~> 1.24
~> 0.9.6

Runtime

 Project Readme

Backy

bucky.png Bucky the Backy Beaver

Introducing "Backy" - the ultimate database backup gem for Ruby on Rails applications! Safeguard your valuable data with ease, speed, and reliability. Developed with the Rails community in mind, Backy provides a comprehensive solution for handling your database backups, ensuring your information is safe and sound.

Features

  • Database backup and restore.
  • Integration with AWS S3 for storing backups.
  • Support for both standalone usage and as part of a Rails application.
  • Automatic configuration inference when used within a Rails application.
  • Logging with colored output.
  • Command Line Interface (CLI) for easy management.

Installation Rails

Add this line to your application's Gemfile:

gem 'backy'

And then execute:

$ bundle

Or install it yourself as:

$ gem install backy_rb

Usage

Standalone

To use Backy in a standalone environment, you can utilize the provided CLI.

$ backy [command] [options]

Available commands include:

  • download: Download a file from S3
  • dump: Dump the database
  • help [COMMAND]: Describe available commands or one specific command
  • list: List all dumps
  • push: Push dump to S3 and delete local file
  • restore: Restore a database from a dump
  • upload: Upload a specific file to S3

In a Rails Application

Backy seamlessly integrates with Rails applications. When included in a Rails app, Backy can automatically infer configurations from the Rails environment.

Rake Tasks

Backy provides Rake tasks for easy integration:

bin/rails backy:dump
bin/rails backy:restore

Configuration

Backy can be configured through a .backyrc YAML file. Place this file in your home directory or the root of your Rails application.

Example .backyrc:

defaults:
  use_parallel: true
  s3:
    access_key_id: YOUR_ACCESS_KEY
    secret_access_key: YOUR_SECRET_KEY
    region: YOUR_REGION
    bucket: YOUR_BUCKET
  database:
    host: DB_HOST
    port: DB_PORT
    username: DB_USERNAME
    password: DB_PASSWORD
    database_name: DB_NAME

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/rubynor/backy.