Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2025-08-06 09:30:53 +00:00
parent 00ee7fb4bd
commit ed83c6ff93
18 changed files with 3983 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# 数据持久化路径 [必填]
CLOUDSAVER_ROOT_PATH=/home/cloudsaver
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=8008
# JWT 密钥 [必填]
JWT_SECRET=

View File

@@ -0,0 +1,8 @@
# JWT配置
JWT_SECRET=${JWT_SECRET}
# Telegram配置
TELEGRAM_BASE_URL=https://t.me/s
# Telegram频道配置
TELE_CHANNELS=[]

View File

@@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: "/home/cloudsaver"
edit: true
envKey: CLOUDSAVER_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 8008
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: ""
edit: true
envKey: JWT_SECRET
labelZh: JWT 密钥
labelEn: JWT secret
required: true
type: text

View File

@@ -0,0 +1,32 @@
networks:
1panel-network:
external: true
services:
cloudsaver:
container_name: cloudsaver
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
healthcheck:
interval: 30s
retries: 3
start_period: 5s
test: 'CMD-SHELL node -e "require(''http'').get(''http://localhost:8008/health'',
res => (res.statusCode >= 200 && res.statusCode < 400) ? process.exit(0) :
process.exit(1)).on(''error'', () => process.exit(1))"
'
timeout: 3s
image: jiangrui1994/cloudsaver:v0.6.0
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8008
restart: always
volumes:
- ${CLOUDSAVER_ROOT_PATH}/data:/app/data
- ${CLOUDSAVER_ROOT_PATH}/config:/app/config

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -0,0 +1,25 @@
#!/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
# setup-2 copy env file
CONFIG_DIR="$CLOUDSAVER_ROOT_PATH/config"
mkdir -p "$CONFIG_DIR"
CONFIG_FILE="$CONFIG_DIR/env"
cp ./config/env.example $CONFIG_FILE
sed -i "s/JWT_SECRET=.*/JWT_SECRET=$JWT_SECRET/" $CONFIG_FILE
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,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

View File

@@ -0,0 +1,34 @@
# CloudSaver
网盘资源搜索与转存工具支持响应式布局移动端与PC完美适配。
![CloudSaver](https://file.lifebus.top/imgs/cloudsaver_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)
## 功能特性
### 🔍 多源资源搜索
+ 支持多个资源订阅源搜索
+ 支持关键词搜索与资源链接解析
+ 支持豆瓣热门榜单展示
### 💾 网盘资源转存
+ 支持115 网盘夸克网盘天翼网盘123云盘一键转存
+ 支持转存文件夹展示与选择
### 👥 多用户系统
+ 支持用户注册登录
+ 支持管理员与普通用户权限区分
### 📱 响应式设计
+ 支持 PC 端与移动端自适应布局
+ 针对不同设备优化的交互体验
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

View File

@@ -0,0 +1,14 @@
additionalProperties:
key: cloudsaver
name: CloudSaver
tags:
- WebSite
- Local
shortDescZh: 网盘资源搜索与转存工具
shortDescEn: Network disk resource search and transfer tool
type: website
crossVersionUpdate: true
limit: 0
website: https://github.com/jiangrui1994/CloudSaver/
github: https://github.com/jiangrui1994/CloudSaver/
document: https://github.com/jiangrui1994/CloudSaver/

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

3753
appstore/cloudsaver/logo.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 282 KiB

9
dockge/cloudsaver/.env Normal file
View File

@@ -0,0 +1,9 @@
# 数据持久化路径 [必填]
CLOUDSAVER_ROOT_PATH=/home/cloudsaver
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=8008
# JWT 密钥 [必填]
JWT_SECRET=

View File

@@ -0,0 +1,8 @@
# JWT配置
JWT_SECRET=${JWT_SECRET}
# Telegram配置
TELEGRAM_BASE_URL=https://t.me/s
# Telegram频道配置
TELE_CHANNELS=[]

View File

@@ -0,0 +1,32 @@
networks:
1panel-network:
external: true
services:
cloudsaver:
container_name: cloudsaver
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
healthcheck:
interval: 30s
retries: 3
start_period: 5s
test: 'CMD-SHELL node -e "require(''http'').get(''http://localhost:8008/health'',
res => (res.statusCode >= 200 && res.statusCode < 400) ? process.exit(0) :
process.exit(1)).on(''error'', () => process.exit(1))"
'
timeout: 3s
image: jiangrui1994/cloudsaver:v0.6.0
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8008
restart: always
volumes:
- ${CLOUDSAVER_ROOT_PATH}/data:/app/data
- ${CLOUDSAVER_ROOT_PATH}/config:/app/config

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai