added command to clear temp files

This commit is contained in:
Denis Duliçi
2021-05-18 10:32:11 +03:00
parent bdb51a27a4
commit 37d0e7da4e
3 changed files with 58 additions and 5 deletions

View File

@ -14,9 +14,9 @@ return [
'name' => env('APP_NAME', 'Akaunting'),
'installed' => env('APP_INSTALLED', false),
'installed' => (bool) env('APP_INSTALLED', false),
'schedule_time' => env('APP_SCHEDULE_TIME', '9:00'),
'schedule_time' => env('APP_SCHEDULE_TIME', '09:00'),
/*
|--------------------------------------------------------------------------
@ -70,7 +70,7 @@ return [
|
*/
'timezone' => 'UTC',
'timezone' => env('APP_TIMEZONE', 'UTC'),
/*
|--------------------------------------------------------------------------
@ -96,7 +96,7 @@ return [
|
*/
'fallback_locale' => 'en-GB',
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en-GB'),
/*
|--------------------------------------------------------------------------
@ -108,7 +108,7 @@ return [
| localized telephone numbers, street address information and more.
|
*/
'faker_locale' => 'en_GB',
'faker_locale' => env('APP_FAKER_LOCALE', 'en_GB'),
/*
|--------------------------------------------------------------------------