Initial commit: Add Docker setup, database schema, and basic PHP application structure

This commit is contained in:
Troy Grunt
2026-02-01 17:14:55 +01:00
parent 52dc3b4536
commit 21e2eebe48
6 changed files with 129 additions and 0 deletions

8
www/.htaccess Normal file
View File

@@ -0,0 +1,8 @@
RewriteEngine On
# Nur wenn keine echte Datei / kein echtes Verzeichnis
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# UUID weiterreichen
RewriteRule ^([a-fA-F0-9-]+)$ card.php?uuid=$1 [L,QSA]