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) + +``` +