chg: [app_local] config defaults
parent
efbf5f0d2c
commit
943e184642
|
@ -5,6 +5,16 @@
|
|||
* Note: It is not recommended to commit files with credentials such as app_local.php
|
||||
* into source code version control.
|
||||
*/
|
||||
|
||||
// set the baseurl here if you want to set it manually
|
||||
$baseurl = env('CEREBRATE_BASEURL', false);
|
||||
|
||||
|
||||
// Do not modify the this block
|
||||
$temp = parse_url($baseurl);
|
||||
$base = empty($temp['path']) ? false : $temp['path'];
|
||||
// end of block
|
||||
|
||||
return [
|
||||
/*
|
||||
* Debug Level:
|
||||
|
@ -90,8 +100,12 @@ return [
|
|||
],
|
||||
],
|
||||
'Cerebrate' => [
|
||||
'open' => [],
|
||||
'dark' => 0,
|
||||
'baseurl' => ''
|
||||
'open' => [],
|
||||
'dark' => 0,
|
||||
'baseurl' => ''
|
||||
],
|
||||
'App' => [
|
||||
'base' => $base,
|
||||
'fullBaseUrl' => $fullBaseUrl
|
||||
]
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue