Sha256: f616246d207c4f3c9625f90c29ca161022990cfad9df7b67eaec3713dbecb4c7
Contents?: true
Size: 766 Bytes
Versions: 4
Compression:
Stored size: 766 Bytes
Contents
PgbackupsS3.configure do |config| # Databases that you want data to be pulled from and restored to. # Defaults to 'DATABASE_URL' # Example of other is 'HEROKU_POSTGRESQL_GRAY_URL' # config.capture_database = 'DATABASE_URL' # config.restore_database = 'DATABASE_URL' # Change this to the S3 bucket name you want the backups to go into # Defaults to 'pgbackups_s3' # config.bucket = 'YOUR_BUCKET_NAME' # This specifies the directories the backups will go in within your bucket # Ex. 'backups' will put all backups within your bucket in the backups folder # config.directories = 'backups' # Input your amazon credentials # Required config.access_key_id = 'YOUR_AWS_ACCESS_KEY' config.secret_access_key = 'YOUR_AWS_SECRET_ACCESS_KEY' end
Version data entries
4 entries across 4 versions & 1 rubygems