the beginning of the idiots

This commit is contained in:
2025-10-24 14:51:13 -05:00
parent 0b377030c6
commit cb06217ef7
123 changed files with 10279 additions and 0 deletions

16
qwen/php/public/index.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
// public/index.php
require_once __DIR__ . '/../vendor/autoload.php';
use App\Application;
use Dotenv\Dotenv;
// Load environment variables
$dotenv = Dotenv::createImmutable(__DIR__ . '/../');
$dotenv->load();
// Initialize the application
$app = new Application();
// Run the application
$app->run();