|  | pirms 3 mēnešiem | |
|---|---|---|
| .. | ||
| .husky | pirms 6 mēnešiem | |
| .storybook | pirms 8 mēnešiem | |
| .vscode | pirms 6 mēnešiem | |
| __mocks__ | pirms 1 gada | |
| app | pirms 3 mēnešiem | |
| assets | pirms 1 gada | |
| bin | pirms 2 gadiem | |
| config | pirms 3 mēnešiem | |
| context | pirms 4 mēnešiem | |
| docker | pirms 3 mēnešiem | |
| hooks | pirms 3 mēnešiem | |
| i18n | pirms 3 mēnešiem | |
| models | pirms 3 mēnešiem | |
| public | pirms 4 mēnešiem | |
| service | pirms 3 mēnešiem | |
| themes | pirms 3 mēnešiem | |
| types | pirms 3 mēnešiem | |
| utils | pirms 3 mēnešiem | |
| .dockerignore | pirms 6 mēnešiem | |
| .env.example | pirms 3 mēnešiem | |
| .gitignore | pirms 8 mēnešiem | |
| Dockerfile | pirms 5 mēnešiem | |
| README.md | pirms 5 mēnešiem | |
| eslint.config.mjs | pirms 4 mēnešiem | |
| global.d.ts | pirms 1 gada | |
| jest.config.ts | pirms 6 mēnešiem | |
| jest.setup.ts | pirms 6 mēnešiem | |
| middleware.ts | pirms 5 mēnešiem | |
| next.config.js | pirms 5 mēnešiem | |
| package.json | pirms 3 mēnešiem | |
| pnpm-lock.yaml | pirms 3 mēnešiem | |
| postcss.config.js | pirms 2 gadiem | |
| tailwind-common-config.ts | pirms 3 mēnešiem | |
| tailwind.config.js | pirms 8 mēnešiem | |
| tsconfig.json | pirms 2 gadiem | |
| typography.js | pirms 7 mēnešiem | |
This is a Next.js project bootstrapped with create-next-app.
Before starting the web frontend service, please make sure the following environment is ready.
First, install the dependencies:
pnpm install
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:
cp .env.example .env.local
# 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
# SENTRY
NEXT_PUBLIC_SENTRY_DSN=
Finally, run the development server:
pnpm run 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.
First, build the app for production:
pnpm run build
Then, start the server:
pnpm run start
If you want to customize the host and port:
pnpm run start --port=3001 --host=0.0.0.0
If you want to customize the number of instances launched by PM2, you can configure PM2_INSTANCES in docker-compose.yaml or Dockerfile.
This project uses Storybook for UI component development.
To start the storybook server, run:
pnpm storybook
Open http://localhost:6006 with your browser to see the result.
If your IDE is VSCode, rename web/.vscode/settings.example.json to web/.vscode/settings.json for lint code setting.
We start to use Jest and React Testing Library for Unit Testing.
You can create a test file with a suffix of .spec beside the file that to be tested. For example, if you want to test a file named util.ts. The test file name should be util.spec.ts.
Run test:
pnpm run test
If you are not familiar with writing tests, here is some code to refer to:
Visit https://docs.dify.ai/getting-started/readme to view the full documentation.
The Dify community can be found on Discord community, where you can ask questions, voice ideas, and share your projects.