filestructure
This commit is contained in:
86
interface/file_structure.md
Normal file
86
interface/file_structure.md
Normal file
@@ -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)
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user