mirror of
https://wget.la/https://github.com/Wxw-Gu/WechatExplorer
synced 2026-08-17 03:27:00 +08:00
补充 Cloudflare Worker、R2 存储、微信 JS-SDK 签名与上传鉴权 增加自动部署 Skill 和配置引导文档 优化报告工具栏、微信卡片弹窗及窄屏响应式布局 补充 Worker 鉴权、卡片生成、过期清理与安全转义测试
37 lines
1.5 KiB
Bash
37 lines
1.5 KiB
Bash
# WeChat Database Key (Optional, can be entered in UI)
|
|
VITE_DB_KEY=
|
|
|
|
# Auto login on startup with VITE_DB_KEY or saved key.
|
|
# Set to true/1/yes/on for local development. Default is disabled.
|
|
VITE_AUTO_LOGIN=false
|
|
|
|
# AI API Configuration (Optional, can be entered in UI)
|
|
# 注意:发布版本不再自动读取以下环境变量。
|
|
# 如果你只是本地开发想用默认值,可以在自己机器的 .env.local 里填,
|
|
# 然后在「设置 → AI 模型」里手动完成"添加供应商"流程。
|
|
VITE_DEEPSEEK_API_KEY=
|
|
VITE_AI_BASE_URL=https://api.deepseek.com
|
|
VITE_AI_MODEL=deepseek-chat
|
|
|
|
# Message types to filter out (comma separated). Empty means show all message types.
|
|
VITE_FILTER_MSG_TYPES=
|
|
|
|
# Image Decryption Keys (Optional, for WeChat 4.0+ image decryption)
|
|
# These are dev fallbacks. End users can fill or auto-fetch them in Settings.
|
|
# XOR Key: hex format like 0x40, 0x53 etc.
|
|
# AES Key: 16-character string, derived from wxid and code
|
|
VITE_IMAGE_XOR_KEY=
|
|
VITE_IMAGE_AES_KEY=
|
|
|
|
# Electron E2E test window close delay in milliseconds.
|
|
# Local default: 2000 (2 seconds). Set to 0 for immediate close.
|
|
WXE_E2E_CLOSE_DELAY_MS=2000
|
|
|
|
# Experimental self-hosted WeChat share-card service
|
|
# Copy these placeholders to .env. Never commit real AppSecret or UPLOAD_TOKEN values.
|
|
WECHAT_SHARE_DOMAIN=share.example.com
|
|
WECHAT_SHARE_APP_ID=
|
|
WECHAT_SHARE_APP_SECRET=
|
|
# Leave empty to let docs/skill/setup-wechat-share-card/scripts/setup.sh generate one.
|
|
WECHAT_SHARE_UPLOAD_TOKEN=
|