mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
f4ce08211d
Co-authored-by: Joel <iamjoel007@gmail.com>
28 lines
806 B
Bash
Executable File
28 lines
806 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
|
|
# if you are using windows, you may need to convert the file to unix format
|
|
# you can use the Ubuntu terminal to convert this file to unix format
|
|
# otherwise, you may get the error after running the docker container
|
|
|
|
# sudo apt-get install dos2unix
|
|
# dos2unix entrypoint.sh
|
|
|
|
|
|
set -e
|
|
|
|
export NEXT_PUBLIC_DEPLOY_ENV=${DEPLOY_ENV}
|
|
export NEXT_PUBLIC_EDITION=${EDITION}
|
|
export NEXT_PUBLIC_API_PREFIX=${CONSOLE_API_URL}/console/api
|
|
export NEXT_PUBLIC_PUBLIC_API_PREFIX=${APP_API_URL}/api
|
|
|
|
export NEXT_PUBLIC_SENTRY_DSN=${SENTRY_DSN}
|
|
export NEXT_PUBLIC_SITE_ABOUT=${SITE_ABOUT}
|
|
export NEXT_TELEMETRY_DISABLED=${NEXT_TELEMETRY_DISABLED}
|
|
|
|
export NEXT_PUBLIC_TEXT_GENERATION_TIMEOUT_MS=${TEXT_GENERATION_TIMEOUT_MS}
|
|
export NEXT_PUBLIC_CSP_WHITELIST=${CSP_WHITELIST}
|
|
|
|
pm2 start ./pm2.json --no-daemon
|