发布应用 WeChatPadPro

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
2025-08-05 12:44:59 +08:00
parent 25f19ab757
commit 92951aa590
10 changed files with 402 additions and 0 deletions
+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
+43
View File
@@ -0,0 +1,43 @@
networks:
1panel-network:
external: true
services:
wechatpadpro:
image: wechatpadpro/wechatpadpro:v18.6
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
- ${PANEL_APP_PORT_WECHAT}:${PANEL_APP_PORT_WECHAT}
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ${WECHATPADPRO_ROOT_PATH}/.env:/app/.env
- ${WECHATPADPRO_ROOT_PATH}/config:/app/config
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
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai
+23
View File
@@ -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
+17
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