🔧 修改端口:避免与会议厅冲突

变更:
- 前端:3000 → 4000
- 后端:8000 → 9000

原因:
- 会议厅使用 3000/8000
- 避免端口冲突

新访问地址:
- 前端:http://localhost:4000
- 后端 API: http://localhost:9000/api/
This commit is contained in:
2026-04-04 18:20:02 +08:00
parent ac5dd3a91e
commit 7be35039ed
4 changed files with 799 additions and 4 deletions

View File

@@ -104,3 +104,7 @@ REST_FRAMEWORK = {
'rest_framework.permissions.AllowAny',
]
}
# 端口配置(避免与会议厅冲突)
# 会议厅3000/8000
# 监控中心4000/9000