2023-05-15 00:51:32 +00:00
# Dify Frontend
2024-06-18 10:33:22 +00:00
2023-05-15 00:51:32 +00:00
This is a [Next.js ](https://nextjs.org/ ) project bootstrapped with [`create-next-app` ](https://github.com/vercel/next.js/tree/canary/packages/create-next-app ).
## Getting Started
2024-06-18 10:33:22 +00:00
2023-09-07 01:43:24 +00:00
### Run by source code
2024-06-18 10:33:22 +00:00
2025-04-08 09:12:25 +00:00
Before starting the web frontend service, please make sure the following environment is ready.
2025-08-20 05:49:11 +00:00
2026-01-15 02:38:55 +00:00
- [Node.js ](https://nodejs.org )
- [pnpm ](https://pnpm.io )
2023-05-15 00:51:32 +00:00
2026-01-12 04:44:30 +00:00
> [!TIP]
> It is recommended to install and enable Corepack to manage package manager versions automatically:
>
> ```bash
> npm install -g corepack
> corepack enable
> ```
>
> Learn more: [Corepack](https://github.com/nodejs/corepack#readme)
2023-09-07 01:43:24 +00:00
First, install the dependencies:
```bash
2025-02-17 09:05:13 +00:00
pnpm install
2023-09-07 01:43:24 +00:00
```
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:
2024-06-18 10:33:22 +00:00
2024-09-19 02:39:27 +00:00
```bash
cp .env.example .env.local
```
2026-02-27 11:44:54 +00:00
```txt
2023-09-07 01:43:24 +00:00
# For production release, change this to PRODUCTION
NEXT_PUBLIC_DEPLOY_ENV=DEVELOPMENT
2024-04-25 14:26:45 +00:00
# The deployment edition, SELF_HOSTED
2023-09-07 01:43:24 +00:00
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
2025-11-18 09:29:54 +00:00
NEXT_PUBLIC_COOKIE_DOMAIN=
2023-09-07 01:43:24 +00:00
# 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=
```
2025-11-18 09:29:54 +00:00
> [!IMPORTANT]
>
> 1. When the frontend and backend run on different subdomains, set NEXT_PUBLIC_COOKIE_DOMAIN=1. The frontend and backend must be under the same top-level domain in order to share authentication cookies.
> 1. It's necessary to set NEXT_PUBLIC_API_PREFIX and NEXT_PUBLIC_PUBLIC_API_PREFIX to the correct backend API URL.
2023-09-07 01:43:24 +00:00
Finally, run the development server:
2023-05-15 00:51:32 +00:00
```bash
2025-02-17 09:05:13 +00:00
pnpm run dev
2023-05-15 00:51:32 +00:00
```
Open [http://localhost:3000 ](http://localhost:3000 ) with your browser to see the result.
2023-09-07 01:43:24 +00:00
You can start editing the file under folder `app` . The page auto-updates as you edit the file.
## Deploy
2024-06-18 10:33:22 +00:00
2023-09-07 01:43:24 +00:00
### Deploy on server
2024-06-18 10:33:22 +00:00
2023-09-07 01:43:24 +00:00
First, build the app for production:
2024-06-18 10:33:22 +00:00
2023-09-07 01:43:24 +00:00
```bash
2025-02-17 09:05:13 +00:00
pnpm run build
2023-09-07 01:43:24 +00:00
```
2023-05-15 00:51:32 +00:00
2023-10-19 03:38:03 +00:00
Then, start the server:
2024-06-18 10:33:22 +00:00
2023-09-07 01:43:24 +00:00
```bash
2025-02-17 09:05:13 +00:00
pnpm run start
2023-09-07 01:43:24 +00:00
```
2023-05-15 00:51:32 +00:00
2023-10-19 03:38:03 +00:00
If you want to customize the host and port:
2024-06-18 10:33:22 +00:00
2023-09-07 01:43:24 +00:00
```bash
2025-02-17 09:05:13 +00:00
pnpm run start --port=3001 --host=0.0.0.0
2023-09-07 01:43:24 +00:00
```
2023-05-15 00:51:32 +00:00
2024-10-16 02:18:48 +00:00
## Storybook
This project uses [Storybook ](https://storybook.js.org/ ) for UI component development.
To start the storybook server, run:
```bash
2025-02-17 09:05:13 +00:00
pnpm storybook
2024-10-16 02:18:48 +00:00
```
Open [http://localhost:6006 ](http://localhost:6006 ) with your browser to see the result.
2023-09-07 01:43:24 +00:00
## Lint Code
2024-06-18 10:33:22 +00:00
2023-09-07 01:43:24 +00:00
If your IDE is VSCode, rename `web/.vscode/settings.example.json` to `web/.vscode/settings.json` for lint code setting.
2023-05-15 00:51:32 +00:00
2026-01-29 09:58:10 +00:00
Then follow the [Lint Documentation ](./docs/lint.md ) to lint the code.
2024-07-18 09:35:10 +00:00
## Test
2025-12-22 08:35:22 +00:00
We use [Vitest ](https://vitest.dev/ ) and [React Testing Library ](https://testing-library.com/docs/react-testing-library/intro/ ) for Unit Testing.
2024-07-18 09:35:10 +00:00
2025-11-26 07:18:07 +00:00
**📖 Complete Testing Guide**: See [web/testing/testing.md ](./testing/testing.md ) for detailed testing specifications, best practices, and examples.
2024-07-18 09:35:10 +00:00
Run test:
```bash
2025-12-22 08:35:22 +00:00
pnpm test
2024-07-18 09:35:10 +00:00
```
2025-11-26 07:18:07 +00:00
### Example Code
2024-07-18 09:35:10 +00:00
2025-11-26 07:18:07 +00:00
If you are not familiar with writing tests, refer to:
- [classnames.spec.ts ](./utils/classnames.spec.ts ) - Utility function test example
- [index.spec.tsx ](./app/components/base/button/index.spec.tsx ) - Component test example
### Analyze Component Complexity
Before writing tests, use the script to analyze component complexity:
```bash
pnpm analyze-component app/components/your-component/index.tsx
```
This will help you determine the testing strategy. See [web/testing/testing.md ](./testing/testing.md ) for details.
2024-07-18 09:35:10 +00:00
2023-09-07 01:43:24 +00:00
## Documentation
2024-06-18 10:33:22 +00:00
2026-01-21 08:31:48 +00:00
Visit < https: / / docs . dify . ai > to view the full documentation.
2023-05-15 00:51:32 +00:00
2023-09-07 01:43:24 +00:00
## Community
2024-06-18 10:33:22 +00:00
2023-12-28 10:14:16 +00:00
The Dify community can be found on [Discord community ](https://discord.gg/5AEfbxcd9k ), where you can ask questions, voice ideas, and share your projects.