Sha256: 3bd784a575da543f5be0eed48f4e80e9ed4211d5da61a13d285e22008733c8ed
Contents?: true
Size: 811 Bytes
Versions: 1
Compression:
Stored size: 811 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 ~/.backupii, 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
backupii-0.1.0.pre.alpha.2 | templates/cli/storages/dropbox |