Version nueva

This commit is contained in:
2020-11-20 16:21:42 -03:00
parent 09f04263fe
commit aae35fc4d1
67 changed files with 8586 additions and 0 deletions

8
setup/env/config.php vendored Normal file
View File

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