Files
AIclinicalresearch/启动Dify.bat
AI Clinical Dev Team 239c7ea85e feat: Day 21-22 - knowledge base frontend completed, fix CORS and file upload issues
- Complete knowledge base list and detail pages
- Complete document upload component
- Fix CORS config (add PUT/DELETE method support)
- Fix file upload issues (disabled state and beforeUpload return value)
- Add detailed debug logs (cleaned up)
- Create Day 21-22 completion summary document
2025-10-11 15:40:12 +08:00

31 lines
593 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
chcp 65001 >nul
echo ====================================
echo 启动 Dify 服务
echo ====================================
echo.
cd /d %~dp0..\dify\docker
echo 当前目录: %CD%
echo.
echo 正在启动Dify服务这可能需要几分钟...
echo.
docker compose up -d
echo.
echo ====================================
echo Dify 服务状态
echo ====================================
echo.
docker compose ps
echo.
echo ====================================
echo.
echo 如果服务启动成功,请访问:
echo http://localhost
echo.
echo 按任意键退出...
pause >nul