From 7722a7c5cd978d5f3d87d54f276dd66e79fa4126 Mon Sep 17 00:00:00 2001 From: Yuhao Date: Tue, 23 May 2023 10:48:03 +0800 Subject: [PATCH] fix: bootstrap env (#127) Co-authored-by: yuhao1118 --- api/.env.example | 2 +- web/.env.example | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 web/.env.example diff --git a/api/.env.example b/api/.env.example index 5f307dc106..4e2d76f810 100644 --- a/api/.env.example +++ b/api/.env.example @@ -14,7 +14,7 @@ CONSOLE_URL=http://127.0.0.1:5001 API_URL=http://127.0.0.1:5001 # Web APP base URL -APP_URL=http://127.0.0.1:5001 +APP_URL=http://127.0.0.1:3000 # celery configuration CELERY_BROKER_URL=redis://:difyai123456@localhost:6379/1 diff --git a/web/.env.example b/web/.env.example new file mode 100644 index 0000000000..acd853834f --- /dev/null +++ b/web/.env.example @@ -0,0 +1,12 @@ +# For production release, change this to PRODUCTION +NEXT_PUBLIC_DEPLOY_ENV=DEVELOPMENT +# The deployment edition, SELF_HOSTED or CLOUD +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 \ No newline at end of file