gistfile1.txt
· 827 B · Text
Sin formato
├── config.js (The Lounge core config)
├── logs
│ ├── *username*
│ │ └── *network_name*-*uuid*
│ │ └── *channel_or_query_name*.log
│ └── *username*.sqlite3
├── packages
│ ├── node_modules
│ │ └── *module_name*
│ │ └── *module's files*
│ ├── package.json (Packages that are installed, and should be installed)
│ ├── package_manager_cache
│ │ └── *NPM/Yarn cache*
│ └── yarn.lock
├── uploads (File uploads)
│ └── *First 2 chars of ID*
│ └── *ID*
├── users
│ └── *username*.json (Contains user config, can be changed under thelounge UI)
└── vapid.json (Most likely keys for Push Notifs)
| 1 | ├── config.js (The Lounge core config) |
| 2 | ├── logs |
| 3 | │ ├── *username* |
| 4 | │ │ └── *network_name*-*uuid* |
| 5 | │ │ └── *channel_or_query_name*.log |
| 6 | │ └── *username*.sqlite3 |
| 7 | ├── packages |
| 8 | │ ├── node_modules |
| 9 | │ │ └── *module_name* |
| 10 | │ │ └── *module's files* |
| 11 | │ ├── package.json (Packages that are installed, and should be installed) |
| 12 | │ ├── package_manager_cache |
| 13 | │ │ └── *NPM/Yarn cache* |
| 14 | │ └── yarn.lock |
| 15 | ├── uploads (File uploads) |
| 16 | │ └── *First 2 chars of ID* |
| 17 | │ └── *ID* |
| 18 | ├── users |
| 19 | │ └── *username*.json (Contains user config, can be changed under thelounge UI) |
| 20 | └── vapid.json (Most likely keys for Push Notifs) |