Small cleanup for easier local development.

Added a dev/ folder which will hold all the needed files for local
development.
This commit is contained in:
2026-06-03 11:06:32 +02:00
parent 5b2864c7d8
commit c52bc9b737
5 changed files with 14 additions and 10 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php declare(strict_types=1);
$uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
$file = dirname(__DIR__) . '/public' . $uri;
if (is_file($file)) {
return false;
}
require dirname(__DIR__) . '/index.php';