Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amitavroy/backup-manager
This Laravel package allows you to create a backup of your database. You can use any file system which Laravel supports like S3, FTP, local etc.
https://github.com/amitavroy/backup-manager
Last synced: about 7 hours ago
JSON representation
This Laravel package allows you to create a backup of your database. You can use any file system which Laravel supports like S3, FTP, local etc.
- Host: GitHub
- URL: https://github.com/amitavroy/backup-manager
- Owner: amitavroy
- Created: 2018-04-18T12:57:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-04-25T05:25:25.000Z (over 6 years ago)
- Last Synced: 2024-11-16T00:47:43.361Z (2 months ago)
- Language: PHP
- Size: 29.3 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Backup-Manager
This Laravel package allows you to create a backup of your database. You can use any file system which Laravel supports like S3, FTP, local etc.
## Installation
## Auto discovery
If you are using Laravel 5.6, then this package supports auto-discovery and so you don't need to do anything and can directly skip to the configuration part.## Normal installation
To install the package, run the following command
```
composer require amitavroy/backup-manager
```Add the service provider inside app.php
```
Amitav\Backup\BackupServiceProvider::class,
```After adding the service provider, publish the config file using
```
php artisan vendor:publish --provider="Amitav\Backup\BackupServiceProvider"
```## Configuration
The config file contains documentation on folder structure and other details. If you are using any other file system like S3, you will need to ensure the env variables are setup for the backup to work.### Some important env variables explained:
| Variable name | Description | Default |
| ------------- |-------------| -----|
| BACKUP_FOLDER_NAME | This is the folder name where the backups will be stored. | DB_DATABASE env |
| BACKUP_DB_FILENAME | This is the file name used along with time at the end | DB_DATABASE env |
| BACKUP_STORAGE_DRIVER | This is the Storage disk which will be used to upload the file. | local |If you are using S3 file system you will need to run the below command to pull the package
```
composer require league/flysystem-aws-s3-v3
```For this package to automatically take backup of the database, you need to add the command in you Kernel.php inside the app\Console folder.
Example:
```
protected $commands = [
BackupDatbase::class,
];$schedule->command('backup:database')->daily();
```