diff --git a/.github/README.md b/.github/README.md index e5f2ce240..3e3855faa 100644 --- a/.github/README.md +++ b/.github/README.md @@ -131,6 +131,7 @@ | 🟢 | | Pingvin Share | https://github.com/stonith404/pingvin-share/ | 一个集轻盈与美观于一体的自托管文件共享平台 | | | 🟢 | | PostgreSQL | https://www.postgresql.org/ | 世界上最先进的开源关系数据库 | | | 🟢 | | Prowlarr | https://prowlarr.com/ | 终极索引器管理器 | | +| 🟢 | | Puff | https://github.com/BitAUR/Puff/ | 域名监控程序 | | | 🟢 | | qBittorrent | https://www.qbittorrent.org/ | qBittorrent 比特流客户端 | | | 🟢 | | 青龙 | https://qinglong.online/ | 【青龙】支持 Python3、JavaScript、Shell、Typescript 的定时任务管理平台 | | | 🟢 | | radarr | https://radarr.video/ | 电影组织者/管理员,适用于 Usenet 和 torrent 用户 | | diff --git a/README.md b/README.md index b30834251..69e790b18 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,7 @@ | 🟢 | | Pingvin Share | https://github.com/stonith404/pingvin-share/ | 一个集轻盈与美观于一体的自托管文件共享平台 | | | 🟢 | | PostgreSQL | https://www.postgresql.org/ | 世界上最先进的开源关系数据库 | | | 🟢 | | Prowlarr | https://prowlarr.com/ | 终极索引器管理器 | | +| 🟢 | | Puff | https://github.com/BitAUR/Puff/ | 域名监控程序 | | | 🟢 | | qBittorrent | https://www.qbittorrent.org/ | qBittorrent 比特流客户端 | | | 🟢 | | 青龙 | https://qinglong.online/ | 【青龙】支持 Python3、JavaScript、Shell、Typescript 的定时任务管理平台 | | | 🟢 | | radarr | https://radarr.video/ | 电影组织者/管理员,适用于 Usenet 和 torrent 用户 | | diff --git a/apps/puff/0.2.2/data.yml b/apps/puff/0.2.2/data.yml new file mode 100644 index 000000000..492027b7e --- /dev/null +++ b/apps/puff/0.2.2/data.yml @@ -0,0 +1,17 @@ +additionalProperties: + formFields: + - default: "/home/puff" + edit: true + envKey: PUFF_ROOT_PATH + labelZh: 数据持久化路径 + labelEn: Data persistence path + required: true + type: text + - default: 8080 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelZh: WebUI 端口 + labelEn: WebUI port + required: true + rule: paramPort + type: number diff --git a/apps/puff/0.2.2/docker-compose.yml b/apps/puff/0.2.2/docker-compose.yml new file mode 100644 index 000000000..1d5317c89 --- /dev/null +++ b/apps/puff/0.2.2/docker-compose.yml @@ -0,0 +1,20 @@ +networks: + 1panel-network: + external: true + +services: + puff: + image: bitaur/puff:v0.2.2 + container_name: ${CONTAINER_NAME} + labels: + createdBy: "Apps" + restart: always + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:8080 + env_file: + - /etc/1panel/envs/global.env + - ${ENV_FILE:-/etc/1panel/envs/default.env} + volumes: + - ${PUFF_ROOT_PATH}/data:/app/data diff --git a/apps/puff/0.2.2/scripts/init.sh b/apps/puff/0.2.2/scripts/init.sh new file mode 100644 index 000000000..77b849120 --- /dev/null +++ b/apps/puff/0.2.2/scripts/init.sh @@ -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 diff --git a/apps/puff/0.2.2/scripts/uninstall.sh b/apps/puff/0.2.2/scripts/uninstall.sh new file mode 100644 index 000000000..c86c4fbca --- /dev/null +++ b/apps/puff/0.2.2/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/puff/0.2.2/scripts/upgrade.sh b/apps/puff/0.2.2/scripts/upgrade.sh new file mode 100644 index 000000000..77b849120 --- /dev/null +++ b/apps/puff/0.2.2/scripts/upgrade.sh @@ -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 diff --git a/apps/puff/README.md b/apps/puff/README.md new file mode 100644 index 000000000..e74bbfd4b --- /dev/null +++ b/apps/puff/README.md @@ -0,0 +1,22 @@ +# Puff + +域名监控工具 + +![Puff](https://file.lifebus.top/imgs/puff_logo.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) + +## 简介 + +### Puff - 开源的域名监控工具 + +> 2024-09-27 · PROJ · ROYWANG + +昨天早上在群里吹水,关注的一个域名橘子已经回复会删除了,但多久删除没有底,想问问群里的大佬多久会删除,但是问了一圈都不知道,所以萌生了写一个域名监控的想法。 + +目前这个服务呢,仅支持监控域名掉落,不能负责抢注,但抢注更多的不是技术难题,而是别的方面。后续打算增加一个域名动态检测的功能,如果域名过期了、进入赎回期、待删除之类的,都可以提醒一下(已支持)。 + +--- + +![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png) +o diff --git a/apps/puff/data.yml b/apps/puff/data.yml new file mode 100644 index 000000000..7a9221fd5 --- /dev/null +++ b/apps/puff/data.yml @@ -0,0 +1,15 @@ +additionalProperties: + key: Puff + name: Puff + tags: + - WebSite + - Tool + - Local + shortDescZh: 域名监控程序 + shortDescEn: Domain monitoring program + type: website + crossVersionUpdate: true + limit: 0 + website: https://github.com/BitAUR/Puff/ + github: https://github.com/BitAUR/Puff/ + document: https://github.com/BitAUR/Puff/ diff --git a/apps/puff/logo.png b/apps/puff/logo.png new file mode 100644 index 000000000..78ac01c72 Binary files /dev/null and b/apps/puff/logo.png differ