You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
->setHelp("Helper command to setup the database configuration. This can also be done manually by editing the <comment>app/.env</comment> file or using global server environment variables.")
39
+
->addOption('force', null, InputOption::VALUE_NONE, "Force setup if db is already configured")
39
40
->addOption('db_driver', null, InputOption::VALUE_OPTIONAL, "The database driver {$this->getDatabaseDriversList()}")
40
41
->addOption('db_name', null, InputOption::VALUE_OPTIONAL, "The database name")
41
42
->addOption('db_host', null, InputOption::VALUE_OPTIONAL, "The database hostname")
@@ -56,6 +57,13 @@ protected function execute(InputInterface $input, OutputInterface $output)
->setHelp('Helper command to setup outgoing email configuration. This can also be done manually by editing the <comment>app/.env</comment> file or using global server environment variables.')
53
+
->addOption('force', null, InputOption::VALUE_NONE, "Force setup if SMTP appears to be already configured")
53
54
->addOption('smtp_host', null, InputOption::VALUE_OPTIONAL, 'The SMTP server hostname')
54
55
->addOption('smtp_user', null, InputOption::VALUE_OPTIONAL, 'The SMTP server user')
55
56
->addOption('smtp_password', null, InputOption::VALUE_OPTIONAL, 'The SMTP server password');
@@ -67,13 +68,18 @@ protected function execute(InputInterface $input, OutputInterface $output)
0 commit comments