mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
25 lines
759 B
PHP
25 lines
759 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|----------------------------------------------------------------------
|
|
| Auto backup mode
|
|
|----------------------------------------------------------------------
|
|
|
|
|
| This value is used when you save your file content. If value is true,
|
|
| the original file will be backed up before save.
|
|
*/
|
|
|
|
'autoBackup' => true,
|
|
|
|
/*
|
|
|----------------------------------------------------------------------
|
|
| Backup location
|
|
|----------------------------------------------------------------------
|
|
|
|
|
| This value is used when you backup your file. This value is the sub
|
|
| path from root folder of project application.
|
|
*/
|
|
|
|
'backupPath' => base_path('storage/dotenv-editor/backups/'),
|
|
];
|