mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
17832f2424
本次提交整合了多个功能改进和问题修复: 主要功能: - 批量工作流处理功能完善,支持 Excel 上传和进度跟踪 - 管理中心反向代理和转发配置优化 - 用户同步添加互斥锁,防止并发问题 - 计费系统和额度显示优化 - AI 绘图功能扩展 前端改进: - 文本生成应用显示修复 - 批量任务进度展示优化 - 按钮样式和 CSS 优化,禁止换行 - 多语言支持完善(新增印尼语等) - 构建镜像逻辑优化 - 批量处理进度管理器实现 后端改进: - Docker Compose 配置升级 - 队列任务和 Worker Pool 优化 - Admin API 初始化和验证逻辑改进 - 数据库迁移和初始化完善 - 静态变量处理优化 - URL 签名助手实现 - Celery 扩展优化 - 代码和导入包问题修复(idea 自动调整代码位置) 技术改进: - 兼容性修复 (flask-restx, jschardet) - 钉钉 Web API 版本更新 - 代码格式化和导入包问题修复 - 日志处理优化 - 工作流循环管理优化 Docker 相关: - Nginx 配置更新 - 容器启动脚本优化 - 镜像构建流程改进 - docker-compose.dify-plus.yaml 大幅更新 管理后台: - 工作流批量处理 API 实现 - 工作池初始化 - 批量工作流服务实现 - 转发扩展配置 - 用户服务扩展
76 lines
2.5 KiB
Bash
76 lines
2.5 KiB
Bash
# For production release, change this to PRODUCTION
|
|
NEXT_PUBLIC_DEPLOY_ENV=DEVELOPMENT
|
|
# The deployment edition, SELF_HOSTED
|
|
NEXT_PUBLIC_EDITION=SELF_HOSTED
|
|
# The base path for the application
|
|
NEXT_PUBLIC_BASE_PATH=
|
|
# The base URL of console application, refers to the Console base URL of WEB service if console domain is
|
|
# different from api or web app domain.
|
|
# example: http://cloud.dify.ai/console/api
|
|
NEXT_PUBLIC_API_PREFIX=http://localhost:5001/console/api
|
|
# The URL for Web APP, refers to the Web App base URL of WEB service if web app domain is different from
|
|
# console or api domain.
|
|
# example: http://udify.app/api
|
|
NEXT_PUBLIC_PUBLIC_API_PREFIX=http://localhost:5001/api
|
|
# The API PREFIX for MARKETPLACE
|
|
NEXT_PUBLIC_MARKETPLACE_API_PREFIX=https://marketplace.dify.ai/api/v1
|
|
# The URL for MARKETPLACE
|
|
NEXT_PUBLIC_MARKETPLACE_URL_PREFIX=https://marketplace.dify.ai
|
|
|
|
# SENTRY
|
|
NEXT_PUBLIC_SENTRY_DSN=
|
|
|
|
# Disable Next.js Telemetry (https://nextjs.org/telemetry)
|
|
NEXT_TELEMETRY_DISABLED=1
|
|
|
|
# Disable Upload Image as WebApp icon default is false
|
|
NEXT_PUBLIC_UPLOAD_IMAGE_AS_ICON=false
|
|
|
|
# The timeout for the text generation in millisecond
|
|
NEXT_PUBLIC_TEXT_GENERATION_TIMEOUT_MS=60000
|
|
|
|
# CSP https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
|
|
NEXT_PUBLIC_CSP_WHITELIST=
|
|
# Default is not allow to embed into iframe to prevent Clickjacking: https://owasp.org/www-community/attacks/Clickjacking
|
|
NEXT_PUBLIC_ALLOW_EMBED=
|
|
|
|
# Allow rendering unsafe URLs which have "data:" scheme.
|
|
NEXT_PUBLIC_ALLOW_UNSAFE_DATA_SCHEME=false
|
|
|
|
# Github Access Token, used for invoking Github API
|
|
NEXT_PUBLIC_GITHUB_ACCESS_TOKEN=
|
|
# The maximum number of top-k value for RAG.
|
|
NEXT_PUBLIC_TOP_K_MAX_VALUE=10
|
|
|
|
# The maximum number of tokens for segmentation
|
|
NEXT_PUBLIC_INDEXING_MAX_SEGMENTATION_TOKENS_LENGTH=4000
|
|
|
|
# Maximum loop count in the workflow
|
|
NEXT_PUBLIC_LOOP_NODE_MAX_COUNT=100
|
|
|
|
# Maximum number of tools in the agent/workflow
|
|
NEXT_PUBLIC_MAX_TOOLS_NUM=10
|
|
|
|
# Maximum number of Parallelism branches in the workflow
|
|
NEXT_PUBLIC_MAX_PARALLEL_LIMIT=10
|
|
|
|
# The maximum number of iterations for agent setting
|
|
NEXT_PUBLIC_MAX_ITERATIONS_NUM=99
|
|
|
|
NEXT_PUBLIC_ENABLE_WEBSITE_JINAREADER=true
|
|
NEXT_PUBLIC_ENABLE_WEBSITE_FIRECRAWL=true
|
|
NEXT_PUBLIC_ENABLE_WEBSITE_WATERCRAWL=true
|
|
|
|
# The maximum number of tree node depth for workflow
|
|
NEXT_PUBLIC_MAX_TREE_DEPTH=50
|
|
|
|
# Default Domain Extend(二开新增配置)
|
|
NEXT_PUBLIC_DEFAULT_DOMAIN=
|
|
|
|
# Auth2 Logout URL(二开新增配置)
|
|
NEXT_PUBLIC_AUTH0_LOGOUT_URL=
|
|
|
|
# 后台地址
|
|
NEXT_PUBLIC_ADMIN_API_URL=http://localhost:5001/
|
|
|