laravel-backup maintained by flamix
Description
Backup to telegram
Author
Last update
2023/12/12 15:06
(dev-main)
License
Downloads
867
Supervisor for poor
This Git repository provides a solution for free backups of "pet projects." It automates the process of creating database dumps and delivers them to your Telegram account, offering a convenient and cost-free backup solution.
// Config
php artisan vendor:publish --provider="Flamix\LaravelBackup\LaravelBackupProvider" --tag="config"
// Add to scheduler: App\Console\Kernel
$schedule->command('backup:database')->->dailyAt('19:02')->runInBackground();
Mannually run command
php artisan backup:database