dify/web
Charlie.Wei 3322710dac
Maintenance notice href (#2227)
Co-authored-by: luowei <glpat-EjySCyNjWiLqAED-YmwM>
Co-authored-by: crazywoola <427733928@qq.com>
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
2024-01-26 13:23:06 +08:00
..
.husky
.vscode
app Maintenance notice href (#2227) 2024-01-26 13:23:06 +08:00
assets
bin
config Feat/zhipuai function calling (#2199) 2024-01-25 16:29:35 +08:00
context fix: remove and create app not reload plan (#2220) 2024-01-26 11:16:50 +08:00
docker
hooks
i18n chore: no custom tool placeholder ui (#2222) 2024-01-26 12:48:26 +08:00
models chore: utm (#2180) 2024-01-24 20:14:21 +08:00
public
service feat: multiple model configuration (#2196) 2024-01-25 12:36:55 +08:00
test/factories
types tts models support (#2033) 2024-01-24 01:05:37 +08:00
utils Maintenance notice href (#2227) 2024-01-26 13:23:06 +08:00
.dockerignore
.editorconfig
.env.example
.eslintignore
.eslintrc.json
.gitignore feat: support assistant frontend (#2139) 2024-01-23 19:31:56 +08:00
Dockerfile bump alpine from 3.18 to 3.19 in web image (#2126) 2024-01-24 16:24:50 +08:00
global.d.ts feat: support assistant frontend (#2139) 2024-01-23 19:31:56 +08:00
next.config.js
package.json Update version to 0.5.1 (#2213) 2024-01-26 00:16:53 +08:00
postcss.config.js
README.md
tailwind.config.js feat: create app show agent type tip (#2207) 2024-01-25 18:04:04 +08:00
tsconfig.json
typography.js
yarn.lock fix: bump lamejs from 1.2.0 to 1.2.1 (#2122) 2024-01-22 14:52:39 +08:00

Dify Frontend

This is a Next.js project bootstrapped with create-next-app.

Getting Started

Run by source code

To start the web frontend service, you will need Node.js v18.x (LTS) and NPM version 8.x.x or Yarn.

First, install the dependencies:

npm install
# or
yarn install --frozen-lockfile

Then, configure the environment variables. Create a file named .env.local in the current directory and copy the contents from .env.example. Modify the values of these environment variables according to your requirements:

# 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

# SENTRY
NEXT_PUBLIC_SENTRY_DSN=

Finally, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the file under folder app. The page auto-updates as you edit the file.

Deploy

Deploy on server

First, build the app for production:

npm run build

Then, start the server:

npm run start

If you want to customize the host and port:

npm run start --port=3001 --host=0.0.0.0

Lint Code

If your IDE is VSCode, rename web/.vscode/settings.example.json to web/.vscode/settings.json for lint code setting.

Documentation

Visit https://docs.dify.ai/getting-started/readme to view the full documentation.

Community

The Dify community can be found on Discord community, where you can ask questions, voice ideas, and share your projects.