Sha256: 4c6ca62916fdbd6b2921f41ea0689784085f09309f1e4c14a3a665bde64c58a0
Contents?: true
Size: 808 Bytes
Versions: 42
Compression:
Stored size: 808 Bytes
Contents
## # Dropbox [Storage] # # Your initial backup must be performed manually to authorize # this machine with your Dropbox account. This authorized session # will be stored in `cache_path` and used for subsequent backups. # store_with Dropbox do |db| db.api_key = "my_api_key" db.api_secret = "my_api_secret" # Sets the path where the cached authorized session will be stored. # Relative paths will be relative to ~/Backup, unless the --root-path # is set on the command line or within your configuration file. db.cache_path = ".cache" # :app_folder (default) or :dropbox db.access_type = :app_folder db.path = "/path/to/my/backups" db.keep = 25 # db.keep = Time.now - 2592000 # Remove all backups older than 1 month. end
Version data entries
42 entries across 42 versions & 8 rubygems