(chore): initial MVP release

This commit is contained in:
2025-11-16 19:05:01 +05:30
commit 842fa3bce3
186 changed files with 24820 additions and 0 deletions

11
htdocs/config/env.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
// config/env.php
use Dotenv\Dotenv;
require_once __DIR__ . '/../core/vendor/autoload.php';
$dotenv = Dotenv::createImmutable(dirname(__DIR__)); // project root
$dotenv->load();
?>