Files
raby/bootstrap/common/config.php

15 lines
353 B
PHP

<?php
return [
'folders.base' => dirname(__DIR__, 2),
'folders.resources' => DI\string(implode(DIRECTORY_SEPARATOR, [
'{folders.base}',
'resources'
])),
'folders.routes' => DI\string(implode(DIRECTORY_SEPARATOR, [
'{folders.resources}',
'routes'
])),
'base_url' => getenv('BASE_URL'),
'urls.base' => getenv('URLS_BASE')
];