Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2025-08-05 06:37:40 +00:00
parent 9c5622a4a0
commit 696a1583f6
54 changed files with 1060 additions and 4 deletions
+51
View File
@@ -0,0 +1,51 @@
# MySQL 服务 (前置检查) [必填]
PANEL_DB_TYPE=mysql
# Redis 服务 (前置检查) [必填]
PANEL_REDIS_TYPE=redis
# 数据持久化路径 [必填]
WECHATPADPRO_ROOT_PATH=/home/wechatpadpro
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=1238
# 微信 API 端口 [必填]
PANEL_APP_PORT_WECHAT=8080
# 数据库 主机 [必填]
DB_HOST=127.0.0.1
# 数据库 端口 [必填]
DB_PORT=3306
# 数据库 名称 [必填]
DB_DATABASE=wechatpadpro
# 数据库 用户名 [必填]
DB_USERNAME=wechatpadpro
# 数据库 密码 [必填]
DB_PASSWORD=
# Redis 主机 [必填]
REDIS_HOST=127.0.0.1
# Redis 端口 [必填]
REDIS_PORT=6379
# Redis 索引 (0-20) [必填]
REDIS_DB=0
# Redis 密码
REDIS_PASSWORD=
# 管理员密钥 [必填]
ADMIN_KEY=
# 推广公众号微信ID
GH_WXID=
# API 版本前缀
API_VERSION=
+144
View File
@@ -0,0 +1,144 @@
additionalProperties:
formFields:
- child:
default: ""
envKey: PANEL_DB_HOST
required: true
type: service
default: mysql
edit: true
envKey: PANEL_DB_TYPE
labelZh: MySQL 服务 (前置检查)
labelEn: Database Service (Pre-check)
required: true
type: apps
values:
- label: MySQL
value: mysql
- label: MariaDB
value: mariadb
- label: Percona
value: percona
- child:
default: ""
envKey: PANEL_REDIS_SERVICE
required: true
type: service
default: redis
envKey: PANEL_REDIS_TYPE
labelZh: Redis 服务 (前置检查)
labelEn: Redis Service (Pre-check)
required: true
type: apps
values:
- label: Redis
value: redis
- default: "/home/wechatpadpro"
edit: true
envKey: WECHATPADPRO_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 1238
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: 8080
edit: true
envKey: PANEL_APP_PORT_WECHAT
labelZh: 微信 API 端口
labelEn: WeChat API port
required: true
rule: paramPort
type: number
- default: "127.0.0.1"
edit: true
envKey: DB_HOST
labelZh: 数据库 主机
labelEn: Database Host
required: true
type: text
- default: 3306
edit: true
envKey: DB_PORT
labelZh: 数据库 端口
labelEn: Database Port
required: true
rule: paramPort
type: number
- default: "wechatpadpro"
edit: true
envKey: DB_DATABASE
labelZh: 数据库 名称
labelEn: Database Name
required: true
type: text
- default: "wechatpadpro"
edit: true
envKey: DB_USERNAME
labelZh: 数据库 用户名
labelEn: Database Username
required: true
type: text
- default: ""
edit: true
envKey: DB_PASSWORD
labelZh: 数据库 密码
labelEn: Database Password
required: true
type: password
- default: "127.0.0.1"
edit: true
envKey: REDIS_HOST
labelZh: Redis 主机
labelEn: Redis Host
required: true
type: text
- default: 6379
edit: true
envKey: REDIS_PORT
labelZh: Redis 端口
labelEn: Redis Port
required: true
rule: paramPort
type: number
- default: 0
edit: true
envKey: REDIS_DB
labelZh: Redis 索引 (0-20)
labelEn: Redis Index (0-20)
required: true
type: number
- default: ""
edit: true
envKey: REDIS_PASSWORD
labelZh: Redis 密码
labelEn: Redis Password
required: false
type: password
- default: ""
edit: true
envKey: ADMIN_KEY
labelZh: 管理员密钥
labelEn: Admin Key
required: true
type: text
- default: ""
edit: true
envKey: GH_WXID
labelZh: 推广公众号微信ID
labelEn: Promotion WeChat ID
required: false
type: text
- default: ""
edit: true
envKey: API_VERSION
labelZh: API 版本前缀
labelEn: API Version Prefix
required: false
type: text
@@ -0,0 +1,49 @@
networks:
1panel-network:
external: true
services:
wechatpadpro:
container_name: wechatpadpro
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
- WECHAT_PORT=${PANEL_APP_PORT_WECHAT}
- PORT=${PANEL_APP_PORT_HTTP}
- DEBUG=false
- HOST=0.0.0.0
- MCP_PORT=8099
- REDIS_MAX_IDLE=30
- REDIS_MAX_ACTIVE=100
- REDIS_IDLE_TIMEOUT=5000
- REDIS_MAX_CONN_LIFETIME=3600
- REDIS_CONNECT_TIMEOUT=5000
- REDIS_READ_TIMEOUT=10000
- REDIS_WRITE_TIMEOUT=10000
- WORKER_POOL_SIZE=500
- MAX_WORKER_TASK_LEN=1000
- WEB_DOMAIN=localhost:1238
- WEB_TASK_NAME=
- WEB_TASK_APP_NUMBER=
- NEWS_SYN_WXID=true
- DT=true
- MYSQL_HOST=${DB_HOST}
- MYSQL_PORT=${DB_PORT}
- MYSQL_USER=${DB_USERNAME}
- MYSQL_PASSWORD=${DB_PASSWORD}
- MYSQL_DATABASE=${DB_DATABASE}
- MYSQL_CONNECT_STR=${DB_USERNAME}:${DB_PASSWORD}@tcp(${DB_HOST}:${DB_PORT})/${DB_DATABASE}?charset=utf8mb4&parseTime=true&loc=Local
- REDIS_PASS=${REDIS_PASSWORD}
image: wechatpadpro/wechatpadpro:v18.6
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
- ${PANEL_APP_PORT_WECHAT}:${PANEL_APP_PORT_WECHAT}
restart: always
volumes:
- ${WECHATPADPRO_ROOT_PATH}/.env:/app/.env
- ${WECHATPADPRO_ROOT_PATH}/config:/app/config
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
@@ -0,0 +1,23 @@
#!/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
mkdir -p "$WECHATPADPRO_ROOT_PATH"
# WECHATPADPRO_ROOT_PATH/.env 创建空文件
touch "$WECHATPADPRO_ROOT_PATH/.env"
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
@@ -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