From 26f23863c003a72c7402e35720114642a6c8fcef Mon Sep 17 00:00:00 2001 From: Peter Papp Date: Fri, 14 May 2021 19:31:23 +0200 Subject: [PATCH] setup account fix --- app/Console/Commands/SetupProdEnvironment.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/SetupProdEnvironment.php b/app/Console/Commands/SetupProdEnvironment.php index 362723a2..08580805 100644 --- a/app/Console/Commands/SetupProdEnvironment.php +++ b/app/Console/Commands/SetupProdEnvironment.php @@ -179,7 +179,7 @@ class SetupProdEnvironment extends Command { $user = User::forceCreate([ 'role' => 'admin', - 'email' => 'admin@vuefilemanager.com', + 'email' => 'howdy@hi5ve.digital', 'password' => bcrypt('vuefilemanager'), ]); @@ -191,7 +191,7 @@ class SetupProdEnvironment extends Command ]); // Show user credentials - $this->info('Default admin account created. Email: admin@vuefilemanager.com and Password: vuefilemanager'); + $this->info('Default admin account created. Email: howdy@hi5ve.digital and Password: vuefilemanager'); } /**