
Co-authored-by: AkaraChen <akarachen@outlook.com> Co-authored-by: Yi <yxiaoisme@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: kurokobo <kuro664@gmail.com> Co-authored-by: Hiroshi Fujita <fujita-h@users.noreply.github.com>
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
# 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 APIFREX for MARKETPLACE
|
|
NEXT_PUBLIC_MARKETPLACE_API_PREFIX=http://localhost:5002/api
|
|
# The URL for MARKETPLACE
|
|
NEXT_PUBLIC_MARKETPLACE_URL_PREFIX=
|
|
|
|
# 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
|