diff --git a/.github/README.md b/.github/README.md index 10db98018..dacabc443 100644 --- a/.github/README.md +++ b/.github/README.md @@ -81,7 +81,8 @@ | 🟢 | | Glance | https://github.com/glanceapp/glance/ | 一个自托管的仪表板,将所有您的订阅源放在一个地方 | | | 🟢 | | Halo | https://halo.run/ | 强大易用的开源建站工具 | | | 🟢 | | Homarr | https://homarr.dev/ | 一个时尚、现代化的仪表板 | | -| 🟢 | | ikaros | https://github.com/Suwmlee/ikaros/ | 打通下载软件与媒体服务,安心享受影片 | | +| 🟢 | | ikaros | https://github.com/Suwmlee/ikaros/ | 打通下载软件与媒体服务,安心享受影片 | ikaros | +| 🟢 | | bonita (ikaros) | https://github.com/Suwmlee/bonita/ | 【新版】打通下载软件与媒体服务,安心享受影片 | ikaros | | 🟢 | | Iframely | https://iframely.com/ | 响应式 Web 嵌入和 URL 元的 Iframely API | | | 🟢 | | Immich | https://immich.app/ | 【完整版本】高性能自托管照片和视频管理解决方案 | Immich | | 🟢 | | Immich-No-Machine | https://immich.app/ | 【无机器学习】高性能自托管照片和视频管理解决方案,适用于性能较差机器使用 | Immich | diff --git a/README.md b/README.md index cecd6a357..705e62787 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,8 @@ | 🟢 | | Glance | https://github.com/glanceapp/glance/ | 一个自托管的仪表板,将所有您的订阅源放在一个地方 | | | 🟢 | | Halo | https://halo.run/ | 强大易用的开源建站工具 | | | 🟢 | | Homarr | https://homarr.dev/ | 一个时尚、现代化的仪表板 | | -| 🟢 | | ikaros | https://github.com/Suwmlee/ikaros/ | 打通下载软件与媒体服务,安心享受影片 | | +| 🟢 | | ikaros | https://github.com/Suwmlee/ikaros/ | 打通下载软件与媒体服务,安心享受影片 | ikaros | +| 🟢 | | bonita (ikaros) | https://github.com/Suwmlee/bonita/ | 【新版】打通下载软件与媒体服务,安心享受影片 | ikaros | | 🟢 | | Iframely | https://iframely.com/ | 响应式 Web 嵌入和 URL 元的 Iframely API | | | 🟢 | | Immich | https://immich.app/ | 【完整版本】高性能自托管照片和视频管理解决方案 | Immich | | 🟢 | | Immich-No-Machine | https://immich.app/ | 【无机器学习】高性能自托管照片和视频管理解决方案,适用于性能较差机器使用 | Immich | diff --git a/apps/bonita/0.9.4/data.yml b/apps/bonita/0.9.4/data.yml new file mode 100644 index 000000000..752da3a7b --- /dev/null +++ b/apps/bonita/0.9.4/data.yml @@ -0,0 +1,38 @@ +additionalProperties: + formFields: + - default: "/home/bonita" + edit: true + envKey: BONITA_ROOT_PATH + labelZh: 数据持久化路径 + labelEn: Data persistence path + required: true + type: text + - default: 12346 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelZh: WebUI 端口 + labelEn: WebUI port + required: true + rule: paramPort + type: number + - default: "" + edit: true + envKey: FIRST_SUPERUSER_EMAIL + labelZh: 初始管理员邮箱 + labelEn: Initial administrator email + required: true + type: text + - default: "" + edit: true + envKey: FIRST_SUPERUSER_PASSWORD + labelZh: 初始管理员密码 + labelEn: Initial administrator password + required: true + type: password + - default: 5 + edit: true + envKey: MAX_CONCURRENCY + labelZh: Celery并发处理任务数 + labelEn: Celery concurrency + required: true + type: number diff --git a/apps/bonita/0.9.4/docker-compose.yml b/apps/bonita/0.9.4/docker-compose.yml new file mode 100644 index 000000000..c0eee1caf --- /dev/null +++ b/apps/bonita/0.9.4/docker-compose.yml @@ -0,0 +1,25 @@ +networks: + 1panel-network: + external: true + +services: + bonita: + image: suwmlee/bonita:0.9.4 + container_name: ${CONTAINER_NAME} + labels: + createdBy: "Apps" + restart: always + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:12346 + env_file: + - ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env} + - ${ENV_FILE:-/etc/1panel/envs/default.env} + volumes: + - ${BONITA_ROOT_PATH}/data:/app/backend/data + - ${BONITA_ROOT_PATH}/media:/media + environment: + - PUID=0 + - PGID=0 + - TZ=Asia/Shanghai diff --git a/apps/bonita/0.9.4/envs/default.env b/apps/bonita/0.9.4/envs/default.env new file mode 100644 index 000000000..cd05f46e6 --- /dev/null +++ b/apps/bonita/0.9.4/envs/default.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +ENV_FILE=.env diff --git a/apps/bonita/0.9.4/envs/global.env b/apps/bonita/0.9.4/envs/global.env new file mode 100644 index 000000000..e10989fe4 --- /dev/null +++ b/apps/bonita/0.9.4/envs/global.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +TZ=Asia/Shanghai diff --git a/apps/bonita/0.9.4/scripts/init.sh b/apps/bonita/0.9.4/scripts/init.sh new file mode 100644 index 000000000..07fb8c3fe --- /dev/null +++ b/apps/bonita/0.9.4/scripts/init.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + # setup-1 add default values + CURRENT_DIR=$(pwd) + sed -i '/^ENV_FILE=/d' .env + sed -i '/^GLOBAL_ENV_FILE=/d' .env + echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env + echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/apps/bonita/0.9.4/scripts/uninstall.sh b/apps/bonita/0.9.4/scripts/uninstall.sh new file mode 100644 index 000000000..c86c4fbca --- /dev/null +++ b/apps/bonita/0.9.4/scripts/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/apps/bonita/0.9.4/scripts/upgrade.sh b/apps/bonita/0.9.4/scripts/upgrade.sh new file mode 100644 index 000000000..07fb8c3fe --- /dev/null +++ b/apps/bonita/0.9.4/scripts/upgrade.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + # setup-1 add default values + CURRENT_DIR=$(pwd) + sed -i '/^ENV_FILE=/d' .env + sed -i '/^GLOBAL_ENV_FILE=/d' .env + echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env + echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/apps/bonita/README.md b/apps/bonita/README.md new file mode 100644 index 000000000..7fab61c95 --- /dev/null +++ b/apps/bonita/README.md @@ -0,0 +1,19 @@ +# ikaros + +打通下载软件与媒体服务,安心享受影片 + +![ikaros](https://file.lifebus.top/imgs/ikaros_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) + +## 简介 + ++ 批量软/硬链接 ++ 批量修改文件名,优化剧集名及自定义 ++ JAV刮削及自定义 ++ 自动清理关联的软/硬链接及种子文件 ++ 托管(忘记这款软件,安心看片) + +--- + +![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png) diff --git a/apps/bonita/data.yml b/apps/bonita/data.yml new file mode 100644 index 000000000..bdebbab2e --- /dev/null +++ b/apps/bonita/data.yml @@ -0,0 +1,14 @@ +additionalProperties: + key: bonita + name: Bonita (ikaros) + tags: + - WebSite + - Local + shortDescZh: 打通下载软件与媒体服务,安心享受影片 + shortDescEn: Connect download software and media services, enjoy movies with peace of mind + type: website + crossVersionUpdate: true + limit: 0 + website: https://bonita.starunits.net/ + github: https://github.com/Suwmlee/bonita/ + document: https://bonita.starunits.net/ diff --git a/apps/bonita/logo.png b/apps/bonita/logo.png new file mode 100644 index 000000000..a07097741 Binary files /dev/null and b/apps/bonita/logo.png differ