mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
81dbfd6748
# Conflicts: # README.md # api/.env.example # api/controllers/console/__init__.py # api/controllers/console/apikey.py # api/controllers/console/explore/completion.py # api/controllers/console/explore/workflow.py # api/controllers/service_api/app/workflow.py # api/controllers/service_api/wraps.py # api/controllers/web/workflow.py # api/core/model_runtime/model_providers/bedrock/get_bedrock_client.py # api/core/model_runtime/model_providers/bedrock/llm/llm.py # api/core/model_runtime/model_providers/openai_api_compatible/openai_api_compatible.yaml # api/core/model_runtime/model_providers/openai_api_compatible/text_embedding/text_embedding.py # api/models/model.py # api/poetry.lock # api/pyproject.toml # web/.env.example # web/Dockerfile # web/app/(commonLayout)/app/(appDetailLayout)/[appId]/layout.tsx # web/app/components/app/overview/appCard.tsx # web/app/components/base/chat/chat-with-history/chat-wrapper.tsx # web/app/components/base/chat/embedded-chatbot/index.tsx # web/app/components/base/mermaid/index.tsx # web/app/components/develop/index.tsx # web/app/components/develop/secret-key/secret-key-modal.tsx # web/app/components/explore/app-list/index.tsx # web/app/components/explore/item-operation/index.tsx # web/app/components/explore/sidebar/app-nav-item/index.tsx # web/app/components/explore/sidebar/index.tsx # web/app/components/header/account-setting/index.tsx # web/app/components/header/index.tsx # web/app/components/share/text-generation/index.tsx # web/app/components/tools/provider/detail.tsx # web/app/layout.tsx # web/package.json # web/service/base.ts # web/yarn.lock
56 lines
1.8 KiB
Bash
56 lines
1.8 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 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=
|
|
|
|
# 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
|
|
|
|
# Default Domain Extend(二开新增配置)
|
|
NEXT_PUBLIC_DEFAULT_DOMAIN=
|
|
|
|
# Auth2 Logout URL(二开新增配置)
|
|
NEXT_PUBLIC_AUTH0_LOGOUT_URL=
|
|
|