mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-28 10:24:45 +02:00

* Remove old admin * Remove controller test * Remove unused exceptions * Remove unused files * More small tweaks * Fix doc block * Remove unused service * Restore these * Add back autoDeploy * Revert "Add back autoDeploy" This reverts commit 630c1e08acf8056ce8e612f376fcd00c23d90aea. * Add these back * Add back exception * Remove ApiController again --------- Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Boy132 <mail@boy132.de> Co-authored-by: notCharles <charles@pelican.dev>
15 lines
239 B
PHP
15 lines
239 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'name' => env('APP_NAME', 'Pelican'),
|
|
'favicon' => env('APP_FAVICON', '/pelican.ico'),
|
|
|
|
'version' => 'canary',
|
|
|
|
'exceptions' => [
|
|
'report_all' => env('APP_REPORT_ALL_EXCEPTIONS', false),
|
|
],
|
|
|
|
];
|