Rate This Document
Findability
Accuracy
Completeness
Readability

Installation Verification

Expected Output

1
2
3
dify-api 1.13.3 >=3.11,<3.13 
api_package False 
dify-web 1.13.3 ^22.22.1 pnpm@10.32.1

api_package False indicates that no build is required on the API side. On the web side, you need to run pnpm build to generate frontend products.

Minimum Startup Example

Dify is a complete application. It requires the configuration of services such as the database, Redis, and object storage.

  • After the runtime configuration is complete, you can start the API service process as follows.
    1
    2
    cd api 
    python3 app.py
    
  • You can install dependencies, build, and start the web frontend as follows.
    1
    2
    3
    4
    cd web 
    pnpm install --frozen-lockfile 
    pnpm build 
    pnpm start