Skip to content
This repository was archived by the owner on Mar 23, 2025. It is now read-only.

Commit 54eb041

Browse files
committed
Update README
1 parent 57d8c10 commit 54eb041

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Mango is a self-hosted manga server and reader. Its features include
1212
- Supported formats: `.cbz`, `.zip`, `.cbr` and `.rar`
1313
- Supports nested folders in library
1414
- Automatically stores reading progress
15+
- Thumbnail generation
1516
- Built-in [MangaDex](https://mangadex.org/) downloader
1617
- Supports [plugins](https://github.com/hkalexling/mango-plugins) to download from thrid-party sites
1718
- The web reader is responsive and works well on mobile, so there is no need for a mobile app
@@ -76,22 +77,27 @@ The default config file location is `~/.config/mango/config.yml`. It might be di
7677
---
7778
port: 9000
7879
base_url: /
79-
library_path: ~/mango/library
80-
db_path: ~/mango/mango.db
80+
session_secret: mango-session-secret
81+
library_path: /home/alex_ling/mango/library
82+
db_path: /home/alex_ling/mango/mango.db
8183
scan_interval_minutes: 5
84+
thumbnail_generation_interval_hours: 24
85+
db_optimization_interval_hours: 24
8286
log_level: info
83-
upload_path: ~/mango/uploads
87+
upload_path: /home/alex_ling/mango/uploads
88+
plugin_path: /home/alex_ling/mango/plugins
89+
download_timeout_seconds: 30
8490
mangadex:
8591
base_url: https://mangadex.org
8692
api_url: https://mangadex.org/api
8793
download_wait_seconds: 5
8894
download_retries: 4
89-
download_queue_db_path: ~/mango/queue.db
95+
download_queue_db_path: /home/alex_ling/mango/queue.db
9096
chapter_rename_rule: '[Vol.{volume} ][Ch.{chapter} ]{title|id}'
9197
manga_rename_rule: '{title}'
9298
```
9399
94-
- `scan_interval_minutes` can be any non-negative integer. Setting it to `0` disables the periodic scan
100+
- `scan_interval_minutes`, `thumbnail_generation_interval_hours` and `db_optimization_interval_hours` can be any non-negative integer. Setting them to `0` disables the periodic tasks
95101
- `log_level` can be `debug`, `info`, `warn`, `error`, `fatal` or `off`. Setting it to `off` disables the logging
96102

97103
### Library Structure

0 commit comments

Comments
 (0)