From 8bf619a2bff5f4deea75e7628c88cc3a66509399 Mon Sep 17 00:00:00 2001 From: Thomas Date: Mon, 15 Sep 2025 22:11:05 +0200 Subject: [PATCH] filestructure --- interface/file_structure.md | 86 +++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 interface/file_structure.md diff --git a/interface/file_structure.md b/interface/file_structure.md new file mode 100644 index 0000000..09901d4 --- /dev/null +++ b/interface/file_structure.md @@ -0,0 +1,86 @@ +\## file structure + +``` + +mod-platform/ + +├─ app/ + +│ ├─ config.php + +│ ├─ bootstrap.php + +│ ├─ db.php + +│ ├─ security.php + +│ ├─ auth.php + +│ ├─ rbac.php + +│ ├─ MixItUpService.php + +│ └─ Audit.php + +├─ database/ + +│ ├─ schema.sql + +│ └─ seed.sql + +├─ public/ + +│ ├─ .htaccess + +│ ├─ login.php + +│ ├─ logout.php + +│ ├─ index.php + +│ ├─ \_layout\_top.php + +│ ├─ \_layout\_bottom.php + +│ ├─ dashboard.php + +│ ├─ commands.php + +│ ├─ timers.php + +│ ├─ events.php + +│ ├─ moderation.php + +│ ├─ users.php + +│ ├─ files.php + +│ ├─ api/ + +│ │ ├─ stream.php + +│ │ ├─ commands.php + +│ │ ├─ timers.php + +│ │ └─ events.php + +│ └─ assets/ + +│ ├─ style.css + +│ └─ app.js + +└─ storage/ + +├─ logs/ + +│ └─ app.log (created automatically) + +└─ files/ + +└─ citater.txt (and other .txt files) + +``` +