Files
portal/setup/env/config.php
2020-11-20 16:21:42 -03:00

9 lines
162 B
PHP

<?php
$dotenv = Dotenv\Dotenv::createImmutable(dirname(__DIR__, 2));
$dotenv->load();
return [
'base_url' => $_ENV['BASE_URL'],
'debug' => $_ENV['DEBUG']
];