├── config.js (The Lounge core config) ├── logs │   ├── *username* │   │   └── *network_name*-*uuid* │   │   └── *channel_or_query_name*.log (Raw log) │   └── *username*.sqlite3 (Message logs in an SQL DB) ├── 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 (Generated by Yarn) ├── 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)