Backup
Backup settings determine how resources are backed up.
Properties
Properties
destinations list<Destination>
A list of BackupDestinationSettings defining where backups are stored.
hocon
destinations = [
{
// Destination settings
},
// ...
]Destinations Destination
Directory
Creates a directory or zip file for each new backup.
Properties
path string
The path to the zip file or directory
keep int
The number of backups to keep
compress boolean
Whether the backup should be compressed into a zip file or saved as a directory.
hocon
type = directory
path = "backups/recipes"
keep = 5
compress = true