From 2202c5b479473d08615029aa188829ca88559ee2 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Sat, 10 Apr 2021 18:00:03 -0400 Subject: [PATCH] Change default env to prod for fresh install --- app/Services/Installer/ConfigService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Installer/ConfigService.php b/app/Services/Installer/ConfigService.php index bbaf8a29..8a06748c 100644 --- a/app/Services/Installer/ConfigService.php +++ b/app/Services/Installer/ConfigService.php @@ -16,7 +16,7 @@ use Symfony\Component\HttpFoundation\File\Exception\FileException; class ConfigService extends Service { protected static $defaultValues = [ - 'APP_ENV' => 'dev', + 'APP_ENV' => 'prod', 'APP_KEY' => '', 'APP_DEBUG' => true, 'APP_LOCALE' => 'en',