You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 📁 Support [multiple archive formats](https://comiclib.github.io/comiclib/en/supported-formats/)
10
8
- 🏷️ Support tag and category metadata import and management
@@ -45,10 +43,6 @@ where `--host 0.0.0.0` specifies the bound IP (`0.0.0.0` enables LAN access), an
45
43
46
44
📄 Please see the [documentation](https://ComicLib.github.io/comiclib/en/) for more settings.
47
45
48
-
# ⚠️ Warning
49
-
50
-
ComicLib is currently in an early development stage🚧, and many things may change as new features are added. Click *watch* in the upper right corner of GitHub or join our group to be notified of the first official release.
51
-
52
46
# 👩💻 Contributing
53
47
Contributions, issues and feature requests are very much welcome.
54
48
Feel free to join the group for deeper communication.
Copy file name to clipboardExpand all lines: docs/en/docs/settings.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,12 +29,15 @@ The following is a list of available settings:
29
29
|`debug`| Turn on debug output (`True`/`False`) |`False`|
30
30
|`loglevel`| Log level (`DEBUG`/`INFO`/`WARNING`/`ERROR`/`CRITICAL`). If `debug` is `True`, it will be overwritten to `DEBUG`|`INFO`|
31
31
|`content`| The path where the comic file is stored |`.`|
32
-
|`thumb`| The path where the generated thumbnails are stored |`./thumb`|
32
+
|`cover`| The path where the generated cover thumbnails are stored |`./thumb`|
33
+
|`thumb`| The path where the generated page thumbnails are stored. If not provided (`None`), will be the same as `cover`. |`None`|
33
34
|`metadata`| The URL for metadata database, refer to [SQLAlchemy documentation](https://docs.sqlalchemy.org/en/20/core/engines.html#database-urls)|`sqlite:///./comiclib_metadata.db`|
34
-
|`password`| Admin password (also used as API Key currently). If it is `None`, any visitor will have editing permissions. This feature is designed to protect against gentlemen but not villains. If you need security protection, please use e.g. the HTTP basic authentication of the reverse proxy, Cloudflare Access or TLS client certificate, etc. |`None`|
35
+
|`password`| Admin password (also used as API Key currently)[^1]. If it is `None`, any visitor will have editing permissions. This feature is designed to protect against gentlemen but not villains. If you need security protection, please use e.g. the HTTP basic authentication of the reverse proxy, Cloudflare Access or TLS client certificate, etc. |`None`|
35
36
|`skip_exists`| Skip comics that have been scanned into the metadata database during scanning? (`True`/`False`) |`True`|
36
37
|`watch`| Monitor comic folders and automatically scan (`True`/`False`) |`True`|
37
38
|`UA_convert_jxl`| For requests with matched user-agent, convert JPEG XL files to other popular formats on the server side. The value is a regular expression. |`Android`|
38
39
|`UA_convert_all`| For requests with matched user-agent, convert all files to other popular formats on the server side. The value is a regular expression. |`\b\B` (will not match anything) |
39
40
40
-
For the settings of the scanners, please refer to the respective instructions.
41
+
In addition, there are settings for scanners, please refer to the respective instructions.
42
+
43
+
[^1]: The security system may change in future versions, including the meaning of the environment variable `password`.
0 commit comments