From 01ad794bcea45bdeb59ba53b548492472b177738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Thu, 24 Dec 2020 15:40:20 +0100 Subject: [PATCH] generate setup key command --- app/Console/Commands/GenerateSetupKey.php | 45 +++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 app/Console/Commands/GenerateSetupKey.php diff --git a/app/Console/Commands/GenerateSetupKey.php b/app/Console/Commands/GenerateSetupKey.php new file mode 100644 index 000000000000..4634e71647b8 --- /dev/null +++ b/app/Console/Commands/GenerateSetupKey.php @@ -0,0 +1,45 @@ +info('Success! Copy the following content into your .env or docker-compose.yml:'); + $this->warn('base64:' . $randomString); + } +}