Skip to content

Muetze42/laravel-git-backup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Git Backup

Actually, I didn't want to make it as a (public) package. So I kept everything short and simple in this readme.

This package create a backup via Git.

A few code parts are taken from spatie/laravel-backup. Also, the spatie/db-dumper from spatie is used.

Configuration

In the default configuration, Laravel storage/app folder uses for backup include a dump of mysql database connection. In this case, the Backup Git repository is located in the storage/app/.git directory.

To change the configuration publish the config/git-backup.php file via command line:

php artisan vendor:publish --provider="NormanHuth\LaravelGitBackup\ServiceProvider"

Usage

Run the backup manually

php artisan git:backup:run

Scheduling

For example use Laravel Task Scheduling

$schedule->command('git:backup:run')->dailyAt('4:00');

Notice

Don't forget to configure global Git settings

git config --global user.email "you@example.com"
git config --global user.name "Your Name"