Initial commit

This commit is contained in:
Ruben 2025-10-02 17:01:55 +02:00
commit f48cdc268b
31 changed files with 628 additions and 0 deletions

9
content/index.php Normal file
View file

@ -0,0 +1,9 @@
<?php
// Handle /app static file requests
if (str_starts_with($_SERVER['REQUEST_URI'], '/app/')) {
require __DIR__ . '/../app/static.php';
exit;
}
// All other requests go to router
require __DIR__ . '/../app/router.php';