boehsermoe / luya-module-backup
The LUYA Backup module.
Installs: 469
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Type:luya-module
Requires
This package is auto-updated.
Last update: 2025-03-14 20:52:40 UTC
README
Based on LUYA schedule module
Installation
composer require boehsermoe/luya-module-backup
In order to add the modules to your project go into the modules section of your config:
return [ 'modules' => [ // ... 'backup' => [ 'class' => 'luya\backup\Module', // Path where files will exported. default @runtime/backups //'exportDir' => '/your/export/path' ], // ... ], ];
Create a new job
Scheduler -> DatabaseBackupJobs -> Add
Execute job
./luya scheduler/run/now {id/name of the job}
Start jobs by cron
Start all expired jobs every minute via cron:
* * * * * ./luya scheduler/run