87 lines
965 B
Markdown
87 lines
965 B
Markdown
\## 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)
|
|
|
|
```
|
|
|