Add files via upload

lanraragi
This commit is contained in:
魔皇地狱 2024-08-10 02:36:57 +08:00 committed by GitHub
parent 06e61d4a72
commit c2038ab26b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 116 additions and 0 deletions

57
apps/lanraragi/README.md Normal file
View File

@ -0,0 +1,57 @@
LANraragi
===========
开源漫画/漫画存档服务器基于Mojolicious + Redis运行。
默认使用存储卷可根据需要自行更换为本机目录存储卷须手动提升权限777
content: 内容
thumbnails: 缩略图
database: 数据库
plugina: 插件
Sideloaded: 手动上传的插件
#### 💬 与其他LANraragi用户在[Discord](https://discord.gg/aRQxtbg)或[GitHub Discussions](https://github.com/Difegue/LANraragi/discussions)交流
#### [📄 文档](https://sugoi.gitbook.io/lanraragi/v/dev) | [⏬ 下载](https://github.com/Difegue/LANraragi/releases/latest) | [🎞 演示](https://lrr.tvc-16.science) | [🪟🌃 Windows Nightlies](https://nightly.link/Difegue/LANraragi/workflows/push-continous-delivery/dev) | [💵 赞助开发](https://ko-fi.com/T6T2UP5N)
## 截图
|主页,缩略图视图 | 主页,列表视图 |
|---|---|
| [![archive_thumb](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/archive_thumb.png)](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/archive_thumb.png) | [![archive_list](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/archive_list.png)](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/archive_list.png) |
|档案阅读器 | 带叠加层的阅读器 |
|---|---|
| [![reader](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/reader.jpg)](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/reader.jpg) | [![reader_overlay](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/reader_overlay.jpg)](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/reader_overlay.jpg) |
|配置 | 插件配置 |
|---|---|
| [![cfg](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/cfg_plugin.png)](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/cfg.png) | [![cfg_plugin](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/cfg_plugin.png)](https://raw.githubusercontent.com/Difegue/LANraragi/dev/tools/_screenshots/cfg_plugin.png) |
## 特点
* 将漫画存储为压缩档案格式。支持zip/rar/targz/lzma/7z/xz/cbz/cbr/pdf基本支持epub
* 直接从Web浏览器读取档案服务器使用临时文件夹从压缩文件中读取。
* 使用内置的OPDS目录现已支持PSE在专用阅读器软件中阅读你的档案
* 使用客户端API与LANraragi进行交互适用于[多种平台!](https://sugoi.gitbook.io/lanraragi/v/dev/advanced-usage/external-readers)
* 两种不同的用户界面:带悬停缩略图的紧凑档案列表或缩略图视图。
* 从5种预装的响应式库样式中选择或使用CSS添加自己的样式。
* 完整的标签支持和命名空间:添加自己的标签或使用插件从其他来源导入。
* 将档案存储在任意或动态分类中,轻松排序你的库。
* 在档案添加到LANraragi时使用插件自动导入元数据。
* 直接从互联网下载档案到服务器,同时使用上述的自动元数据导入。
* 将数据库备份为JSON格式将标签转移到另一个LANraragi实例。
## 提交PR获取贴纸™
合并到此repo的PR或捐赠$5以上有资格获得[免费贴纸包](https://forms.office.com/Pages/ResponsePage.aspx?id=DQSIkWdsW0yxEjajBLZtrQAAAAAAAAAAAAN__osxt25URTdTUTVBVFRCTjlYWFJLMlEzRTJPUEhEVy4u)。

18
apps/lanraragi/data.yml Normal file
View File

@ -0,0 +1,18 @@
name: LANraragi
tags:
- 多媒体
title: Lanraragi是一个开源的压缩包漫画阅读器运行在Mojolicious和Redis基础上。
type: 多媒体
description:
additionalProperties:
key: lanraragi
name: LANraragi
shortDescZh: Lanraragi是一个开源的压缩包漫画阅读器运行在Mojolicious和Redis基础上。
shortDescEn: Open source server for archival of comics/manga, running on Mojolicious + Redis.
type: 多媒体
crossVersionUpdate: true
limit: 0
recommend: 0
website: https://lrr.tvc-16.science/
github: https://github.com/Difegue/LANraragi?tab=readme-ov-file
document: https://sugoi.gitbook.io/lanraragi/v/dev

View File

@ -0,0 +1,10 @@
additionalProperties:
formFields:
- default: 3000
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: WebUI Port
labelZh: 网页端口
required: true
rule: paramPort
type: number

View File

@ -0,0 +1,31 @@
services:
lanraragi:
user: root
container_name: lanraragi
restart: always
networks:
- 1panel-network
environment:
- "TZ=Asia/Shanghai"
ports:
- "3000:3000"
volumes:
- content:/home/koyomi/lanraragi/content
- thumbnails:/home/koyomi/lanraragi/content/thumb
- database:/home/koyomi/lanraragi/database
- plugin:/home/koyomi/lanraragi/lib/LANraragi/Plugin
- Sideloaded:/home/koyomi/lanraragi/lib/LANraragi/PluginSideloaded
image: difegue/lanraragi
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true
volumes:
content:
thumbnails:
database:
plugin:
Sideloaded:

BIN
apps/lanraragi/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB