Processed apps directory via GitHub Actions
This commit is contained in:
9
appstore/cloudsaver/0.6.0/.env
Normal file
9
appstore/cloudsaver/0.6.0/.env
Normal file
@@ -0,0 +1,9 @@
|
||||
# 数据持久化路径 [必填]
|
||||
CLOUDSAVER_ROOT_PATH=/home/cloudsaver
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=8008
|
||||
|
||||
# JWT 密钥 [必填]
|
||||
JWT_SECRET=
|
||||
|
||||
8
appstore/cloudsaver/0.6.0/config/env.example
Normal file
8
appstore/cloudsaver/0.6.0/config/env.example
Normal file
@@ -0,0 +1,8 @@
|
||||
# JWT配置
|
||||
JWT_SECRET=${JWT_SECRET}
|
||||
|
||||
# Telegram配置
|
||||
TELEGRAM_BASE_URL=https://t.me/s
|
||||
|
||||
# Telegram频道配置
|
||||
TELE_CHANNELS=[]
|
||||
24
appstore/cloudsaver/0.6.0/data.yml
Normal file
24
appstore/cloudsaver/0.6.0/data.yml
Normal 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
|
||||
32
appstore/cloudsaver/0.6.0/docker-compose.yml
Normal file
32
appstore/cloudsaver/0.6.0/docker-compose.yml
Normal 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
|
||||
2
appstore/cloudsaver/0.6.0/envs/default.env
Normal file
2
appstore/cloudsaver/0.6.0/envs/default.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
2
appstore/cloudsaver/0.6.0/envs/global.env
Normal file
2
appstore/cloudsaver/0.6.0/envs/global.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
25
appstore/cloudsaver/0.6.0/scripts/init.sh
Normal file
25
appstore/cloudsaver/0.6.0/scripts/init.sh
Normal 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
|
||||
10
appstore/cloudsaver/0.6.0/scripts/uninstall.sh
Normal file
10
appstore/cloudsaver/0.6.0/scripts/uninstall.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
17
appstore/cloudsaver/0.6.0/scripts/upgrade.sh
Normal file
17
appstore/cloudsaver/0.6.0/scripts/upgrade.sh
Normal 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
|
||||
34
appstore/cloudsaver/README.md
Normal file
34
appstore/cloudsaver/README.md
Normal file
@@ -0,0 +1,34 @@
|
||||
# CloudSaver
|
||||
|
||||
网盘资源搜索与转存工具,支持响应式布局,移动端与PC完美适配。
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 功能特性
|
||||
|
||||
### 🔍 多源资源搜索
|
||||
|
||||
+ 支持多个资源订阅源搜索
|
||||
+ 支持关键词搜索与资源链接解析
|
||||
+ 支持豆瓣热门榜单展示
|
||||
|
||||
### 💾 网盘资源转存
|
||||
|
||||
+ 支持115 网盘,夸克网盘,天翼网盘,123云盘一键转存
|
||||
+ 支持转存文件夹展示与选择
|
||||
|
||||
### 👥 多用户系统
|
||||
|
||||
+ 支持用户注册登录
|
||||
+ 支持管理员与普通用户权限区分
|
||||
|
||||
### 📱 响应式设计
|
||||
|
||||
+ 支持 PC 端与移动端自适应布局
|
||||
+ 针对不同设备优化的交互体验
|
||||
|
||||
---
|
||||
|
||||

|
||||
14
appstore/cloudsaver/data.yml
Normal file
14
appstore/cloudsaver/data.yml
Normal 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/
|
||||
BIN
appstore/cloudsaver/logo.png
Normal file
BIN
appstore/cloudsaver/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 248 KiB |
3753
appstore/cloudsaver/logo.svg
Normal file
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
9
dockge/cloudsaver/.env
Normal file
@@ -0,0 +1,9 @@
|
||||
# 数据持久化路径 [必填]
|
||||
CLOUDSAVER_ROOT_PATH=/home/cloudsaver
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=8008
|
||||
|
||||
# JWT 密钥 [必填]
|
||||
JWT_SECRET=
|
||||
|
||||
8
dockge/cloudsaver/config/env.example
Normal file
8
dockge/cloudsaver/config/env.example
Normal file
@@ -0,0 +1,8 @@
|
||||
# JWT配置
|
||||
JWT_SECRET=${JWT_SECRET}
|
||||
|
||||
# Telegram配置
|
||||
TELEGRAM_BASE_URL=https://t.me/s
|
||||
|
||||
# Telegram频道配置
|
||||
TELE_CHANNELS=[]
|
||||
32
dockge/cloudsaver/docker-compose.yml
Normal file
32
dockge/cloudsaver/docker-compose.yml
Normal 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
|
||||
2
dockge/cloudsaver/envs/default.env
Normal file
2
dockge/cloudsaver/envs/default.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
2
dockge/cloudsaver/envs/global.env
Normal file
2
dockge/cloudsaver/envs/global.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
Reference in New Issue
Block a user