pixelfed/config/dotenv-editor.php

28 lines
761 B
PHP
Raw Permalink Normal View History

2018-07-24 00:54:42 +00:00
<?php
2018-08-28 03:07:36 +00:00
return [
2018-07-24 00:54:42 +00:00
/*
|----------------------------------------------------------------------
| 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.
*/
2018-08-28 03:07:36 +00:00
'backupPath' => base_path('storage/dotenv-editor/backups/'),
2018-07-24 00:54:42 +00:00
2018-08-28 03:07:36 +00:00
];