This website requires JavaScript.
Explore
Help
Sign In
WuYanBo
/
CodeReview
Watch
1
Star
0
Fork
You've already forked CodeReview
0
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
c43b0f4c09
CodeReview
/
backend
/
main.py
7 lines
95 B
Python
Raw
Normal View
History
Unescape
Escape
refactor: 重构项目结构,将前端和后端代码分离到独立目录 - 将前端代码移动到 frontend/ 目录 - 将后端代码移动到 backend/ 目录 - 更新 .gitignore 以包含 Python 和前端构建产物 - 修复 LLM JSON 解析问题,增强错误处理 - 修复前端配置默认值,改为从后端获取 - 删除 AdminDashboard 中的数据库信息和统计卡片 - 完善系统配置管理,支持从后端获取默认配置
2025-11-26 21:11:12 +08:00
def
main
(
)
:
chore: rebrand XCodeReviewer to DeepAudit across all files - Update project name from XCodeReviewer to DeepAudit in CI/CD workflows - Replace Docker image names and release artifact naming conventions - Update GitHub repository references in documentation files - Modify database names and container names in setup instructions - Update contributor badge and issue tracker links - Rename frontend logo file from logo_deepaudit.png - Update environment configuration examples and documentation - Rebrand all references in CONTRIBUTING.md, DISCLAIMER.md, and README.md - Update backend configuration and deployment documentation - Ensure consistent naming across frontend and backend configurations
2025-12-08 21:35:09 +08:00
print
(
"
Hello from deepaudit-backend!
"
)
refactor: 重构项目结构,将前端和后端代码分离到独立目录 - 将前端代码移动到 frontend/ 目录 - 将后端代码移动到 backend/ 目录 - 更新 .gitignore 以包含 Python 和前端构建产物 - 修复 LLM JSON 解析问题,增强错误处理 - 修复前端配置默认值,改为从后端获取 - 删除 AdminDashboard 中的数据库信息和统计卡片 - 完善系统配置管理,支持从后端获取默认配置
2025-11-26 21:11:12 +08:00
if
__name__
==
"
__main__
"
:
main
(
)