20 lines
482 B
PHP
20 lines
482 B
PHP
<?php
|
|
// phpcs:disable PEAR.Commenting.FileComment,PEAR.Commenting.ClassComment
|
|
|
|
/**
|
|
* Application configuration values.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
$rootPath = dirname(__DIR__);
|
|
$projectRoot = getenv('IKB_PROJECT_ROOT');
|
|
|
|
return [
|
|
'app_name' => 'IronKanban',
|
|
'base_path' => $rootPath,
|
|
'project_root' => $projectRoot !== false && $projectRoot !== ''
|
|
? $projectRoot
|
|
: $rootPath . DIRECTORY_SEPARATOR . 'storage' . DIRECTORY_SEPARATOR . 'projects',
|
|
];
|