Thanks to visit codestin.com
Credit goes to github.com

Skip to content

A simple gem for backing up a MongoDB database to AWS when hosted on Heroku using a Sidekiq worker.

License

Notifications You must be signed in to change notification settings

Daltron/safety_net_heroku

Repository files navigation

🎉 Works with the Heroku 22 Stack! 🎉

A simple gem for backing up a MongoDB database to AWS when hosted on Heroku using a Sidekiq worker.

Installation

gem 'safety_net_heroku'

Usage

Add this buildpack to your Heroku setup: https://github.com/Daltron/heroku-buildpack-mongo-database-tools

Ensure this environment variable is set within Heroku:

ENV['DB_URI_NO_OPTIONS']

Create a new Safety Net Heroku initializer:

# safety_net_heroku.rb

SafetyNetHeroku.config[:database_name] = 'database_name'
SafetyNetHeroku.config[:aws_region] = 's3_region'
SafetyNetHeroku.config[:aws_bucket] = 's3_bucket'
SafetyNetHeroku.config[:aws_backups_directory] = s3_directory'

Add the worker to your sidekiq schedule as a cron job:

# sidekiq_schedule.yml

backup_database:
  cron: "0 3 * * *"
  class: "SafetyNetHeroku::BackupDatabaseWorker"

Your database will now be backed up to the AWS directory specified periodically based on your cron settings! 🎉

Author

Dalton Hinterscher, [email protected]

License

Safety Net Heroku is available under the MIT license. See the LICENSE file for more info.

About

A simple gem for backing up a MongoDB database to AWS when hosted on Heroku using a Sidekiq worker.

Resources

License

Stars

Watchers

Forks

Packages

No packages published