Project

backup2s3

0.01
No commit activity in last 3 years
No release in over 3 years
Backup2s3 is a gem that performs database and application backups and stores the data on Amazon S3.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.59.0, ~> 1.59
 Project Readme

NOTE: This gem is no longer maintained. Please contact me if you are interested in helping maintain it.

SETUP

1. Add the dependencies to your Gemfile
    gem 'backup2s3'

2. Run the generator in your application root directory
    rails g backup2s3

3. Change your settings in config/backup2s3.yml

USAGE (rake tasks)

Create -- Creates a backup and moves it to S3
       -- comment - Add notes here to mark specific backups (optional)

  rake backup2s3:backup:create
  rake backup2s3:backup:create  comment='put notes about backup here if needed'


Delete  -- Deletes the specified backup
        -- id - Backup to delete, backup ids will be found using List

  rake backup2s3:backup:delete  id='20100913180541'


List    -- Lists all backups that are currently on S3
        -- details - Setting details to true will display backup file names
                     and backup comments (optional)

  rake backup2s3:backup:list
  rake backup2s3:backup:list  details=true


Restore -- Restores a specific backup
        -- id - Backup to restore, backup ids will be found using List task

  rake backup2s3:backup:restore id='20100913180541'