diff --git a/backend/app/Console/Commands/Init.php b/backend/app/Console/Commands/Init.php index d380422..e03e2a5 100644 --- a/backend/app/Console/Commands/Init.php +++ b/backend/app/Console/Commands/Init.php @@ -39,7 +39,7 @@ { foreach($this->requests as $type => $text) { if( ! env($type)) { - $value = $this->ask('Enter your Database ' . $text); + $value = $this->ask('Enter your Database ' . $text, false); $this->changeENV($type, $value); } }