gistfile1.txt
· 898 B · Text
Ham
swee@peppermint:/etc/thelounge$ sudo tree
[sudo] password for swee:
.
├── 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 | swee@peppermint:/etc/thelounge$ sudo tree |
2 | [sudo] password for swee: |
3 | . |
4 | ├── config.js (The Lounge core config) |
5 | ├── logs |
6 | │ ├── *username* |
7 | │ │ └── *network_name*-*uuid* |
8 | │ │ └── *channel_or_query_name*.log |
9 | │ └── *username*.sqlite3 |
10 | ├── packages |
11 | │ ├── node_modules |
12 | │ │ └── *module_name* |
13 | │ │ └── *module's files* |
14 | │ ├── package.json (Packages that are installed, and should be installed) |
15 | │ ├── package_manager_cache |
16 | │ │ └── *NPM/Yarn cache* |
17 | │ └── yarn.lock |
18 | ├── uploads (File uploads) |
19 | │ └── *First 2 chars of ID* |
20 | │ └── *ID* |
21 | ├── users |
22 | │ └── *username*.json (Contains user config, can be changed under thelounge UI) |
23 | └── vapid.json (Most likely keys for Push Notifs) |