Atproto test
hello !
this is a test post stored on my pds
//config/backup.php
'cleanup' => [
/*
* The strategy that will be used to cleanup old backups. The default strategy
* will keep all backups for a certain amount of days. After that period only
* a daily backup will be kept. After that period only weekly backups will
* be kept and so on.
*
* No matter how you configure it the default strategy will never
* delete the newest backup.
*/
'strategy' => \Spatie\Backup\Tasks\Cleanup\Strategies\DefaultStrategy::class,
'default_strategy' => [
/*
* The number of days that all backups must be kept.
*/
'keep_all_backups_for_days' => 7,
/*
* The number of days that all daily backups must be kept.
*/
'keep_daily_backups_for_days' => 16,
/*
* The number of weeks of which one weekly backup must be kept.
*/
'keep_weekly_backups_for_weeks' => 8,
/*
* The number of months of which one monthly backup must be kept.
*/
'keep_monthly_backups_for_months' => 4,
/*
* The number of years of which one yearly backup must be kept.
*/
'keep_yearly_backups_for_years' => 2,
/*
* After cleaning up the backups remove the oldest backup until
* this amount of megabytes has been reached.
* Set null for unlimited size.
*/
'delete_oldest_backups_when_using_more_megabytes_than' => 5000,
],
],