This commit is contained in:
2021-12-06 22:10:57 -03:00
parent 8ef4ab1c7d
commit 9d2504f016
35 changed files with 1374 additions and 239 deletions

View File

@ -1,4 +1,5 @@
<?php
return [
'debug' => $_ENV['DEBUG'] ?? false
'debug' => $_ENV['DEBUG'] ?? false,
'API_KEY' => $_ENV['API_KEY'] ?? ''
];

View File

@ -16,6 +16,10 @@ return [
$arr['assets'],
'scripts'
]);
$arr['styles'] = implode('/', [
$arr['assets'],
'styles'
]);
$arr['api'] = $_ENV['API_URL'] ?? 'http://localhost:9001';
return (object) $arr;
}