feature: Initial MVP

This commit is contained in:
Keith Solomon
2026-04-05 16:20:39 -05:00
parent 3af0b9cd0f
commit 812e5c2f2a
60 changed files with 5917 additions and 5 deletions
+19
View File
@@ -0,0 +1,19 @@
<?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',
];