# duwich **Repository Path**: xproject_1/duwich ## Basic Information - **Project Name**: duwich - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-02-07 - **Last Updated**: 2025-09-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # DulwichICQ Frontend Project DulwichICQ is a web application for ICQ Service. ## Prerequiste ### Node Environment Preparation Node installation reference: https://developer.aliyun.com/article/1567954 This project depends on the following versions: node 14.18.0 npm 6.14.15 Run the following commands to switch node and npm versions: ``` # if multiple node exists, change it by the command nvm use 14.18.0 ``` ### Dependency Installation ``` npm install ``` ## Development ### Configuration update related config data in .env if needed. such as dify backend and dify backend url, other agent hash code ``` VUE_APP_AI_BACKEND_API_URL=http://localhost:8000 VUE_APP_AI_DIFY_CHAT_UI_BASE_URL=http://10.80.11.212 ``` ### Compiles and Run in Hot-Reload Mode For Development ``` npm run serve ``` ### Lints and Fixes do static analysis ``` npm run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). ## Deployment ### Configuration update related config data in .env.production if needed. such as dify backend and dify backend url, other agent hash code ``` VUE_APP_AI_BACKEND_API_URL=http://10.99.128.21:8000 VUE_APP_AI_DIFY_CHAT_UI_BASE_URL=http://10.99.128.21 ``` ### Compiles and Minifies for Production ``` npm run build ``` ### Copy Into Production Host and Activate It ``` # Copy the dist directory to the Windows 2019 server desktop # Open the IIS website directory # Copy all files from the dist directory on the desktop to the IIS website directory ```