发布应用 Teemii 漫画阅读器
Some checks failed
Push custom to released / push-branch (push) Has been cancelled

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
新疆萌森软件开发工作室 2024-10-21 16:47:34 +08:00
parent e376945b6f
commit bfc4f45eb9
10 changed files with 144 additions and 0 deletions

1
.github/README.md vendored
View File

@ -153,6 +153,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/stream-rec/logo.png" width="22"/> | Stream-Rec Web版 | https://github.com/hua0512/stream-rec/ | 【前端版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/stream-rec/logo.png" width="22"/> | Stream-Rec 服务版 | https://github.com/hua0512/stream-rec/ | 【服务版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/tangsengdaodao/logo.png" width="22"/> | 唐僧叨叨 | https://tsdaodao.com/ | 让企业轻松拥有自己的即时通讯 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/teemii/logo.png" width="22"/> | Teemii | https://www.teemii.io/ | 漫画阅读器和管理器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/telegram-bot-api/logo.png" width="22"/> | Telegram Bot Api | https://telegram.org/ | 自建 Telegram Bot API 服务器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/traccar/logo.png" width="22"/> | Traccar 轨迹 | https://www.traccar.org/ | 现代 GPS 追踪系统 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/transmission/logo.png" width="22"/> | Transmission | https://transmissionbt.com/ | 快速、简单、免费的 Bittorrent 客户端 | |

View File

@ -136,6 +136,7 @@
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/stream-rec/logo.png" width="22"/> | Stream-Rec Web版 | https://github.com/hua0512/stream-rec/ | 【前端版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/stream-rec/logo.png" width="22"/> | Stream-Rec 服务版 | https://github.com/hua0512/stream-rec/ | 【服务版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/tangsengdaodao/logo.png" width="22"/> | 唐僧叨叨 | https://tsdaodao.com/ | 让企业轻松拥有自己的即时通讯 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/teemii/logo.png" width="22"/> | Teemii | https://www.teemii.io/ | 漫画阅读器和管理器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/telegram-bot-api/logo.png" width="22"/> | Telegram Bot Api | https://telegram.org/ | 自建 Telegram Bot API 服务器 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/traccar/logo.png" width="22"/> | Traccar 轨迹 | https://www.traccar.org/ | 现代 GPS 追踪系统 | |
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/transmission/logo.png" width="22"/> | Transmission | https://transmissionbt.com/ | 快速、简单、免费的 Bittorrent 客户端 | |

View File

@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: "/home/teemii"
edit: true
envKey: TEEMII_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: 访问端口
labelEn: Port
required: true
rule: paramPort
type: number
- default: "Teemii"
edit: true
envKey: VITE_APP_TITLE
labelZh: 网站标题
labelEn: Website Title
required: true
type: text

View File

@ -0,0 +1,36 @@
networks:
1panel-network:
external: true
services:
teemii-frontend:
image: dokkaner/teemii-frontend:0.8.2
container_name: frontend-${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:80
env_file:
- /etc/1panel/envs/global.env
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- VITE_APP_PORT=80
teemii-backend:
image: dokkaner/teemii-backend:0.8.2
container_name: backend-${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
env_file:
- /etc/1panel/envs/global.env
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ${TEEMII_ROOT_PATH}/data:/data
environment:
- EXPRESS_PORT=3000
- SOCKET_IO_PORT=1555

View File

@ -0,0 +1,15 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@ -0,0 +1,15 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

28
apps/teemii/README.md Normal file
View File

@ -0,0 +1,28 @@
# Teemiio
多功能,自托管的漫画阅读器和管理器,具有可扩展的基于代理的元数据检索
![Teemiio](https://file.lifebus.top/imgs/teemii_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
Teemii 是为热衷漫画阅读者设计的精简网络应用。它提供了一个简单高效、用于阅读和管理漫画收藏的平台。
主要功能包括跨平台访问、浏览器内阅读、强大的元数据聚合器以及自动更新您的收藏。
## 特性
+ 直观用户界面Teemii 拥有用户友好的界面,使导航和互动变得轻松,从而提升整体用户体验。
+ 原始漫画存档存储:自行托管漫画。
+ 跨平台兼容性:无论您想在哪里部署,都可以在各种设备上访问。
+ 可定制的浏览器内漫画阅读:直接在网页浏览器中阅读漫画,无需额外软件。
+ CBZ 和 CBR 格式支持:导入和管理流行的漫画格式。
+ 自动阅读进度跟踪:无缝追踪阅读进度。
+ 全面元数据聚合:每部漫画的详细信息
+ 个性化漫画推荐:根据阅读习惯建议新标题。
+ 多用途章节获取:从多个在线资源获取漫画章节。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

14
apps/teemii/data.yml Normal file
View File

@ -0,0 +1,14 @@
additionalProperties:
key: teemii
name: Teemii
tags:
- WebSite
- Local
shortDescZh: 漫画阅读器和管理器
shortDescEn: Comic reader and manager
type: website
crossVersionUpdate: true
limit: 0
website: https://www.teemii.io/
github: https://github.com/dokkaner/teemii/
document: https://docs.teemii.io/

BIN
apps/teemii/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB