From 482c613ca6b90d64e1d53ba8395b7da28995d790 Mon Sep 17 00:00:00 2001 From: Jens <34610614+AGuyNamedJens@users.noreply.github.com> Date: Wed, 5 Apr 2023 14:14:55 +0200 Subject: [PATCH] Move .env.example to functions.php --- public/install/functions.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/install/functions.php b/public/install/functions.php index 6ad3beca..5846ad78 100644 --- a/public/install/functions.php +++ b/public/install/functions.php @@ -9,6 +9,10 @@ use Monolog\Formatter\LineFormatter; use Monolog\Handler\StreamHandler; use Monolog\Logger; +if (!file_exists('../../.env')) { + echo run_console('cp .env.example .env'); +} + (new DotEnv(dirname(__FILE__, 3) . '/.env'))->load(); $required_extensions = ['openssl', 'gd', 'mysql', 'PDO', 'mbstring', 'tokenizer', 'bcmath', 'xml', 'curl', 'zip', 'intl'];