Phase 0 评审二次修复:init.sh 增加 .exe fallback + 文档统一 MSYS2 环境声明

This commit is contained in:
ila
2026-07-06 19:13:08 +08:00
parent ded4fefef2
commit 9390c4039f
7 changed files with 172 additions and 22 deletions
+5 -5
View File
@@ -19,7 +19,7 @@
- 测试:`home/tests.py` 含 5 个测试(含 smoke 测试 `test_homepage_returns_200`),全部通过;`manage.py test` 可运行
- 数据:已创建 superuser `admin`;尚未建立 seed 数据
- 标准启动路径:`init.sh` 已配置 `pip install` / `manage.py check` / `manage.py runserver` 命令
- 标准验证路径:`.venv/bin/python manage.py check` 通过(3 个 treebeard 兼容警告非阻塞)
- 标准验证路径:`.venv/bin/python3.12 manage.py check` 通过(3 个 treebeard 兼容警告非阻塞)
- 当前 blocker:无;下一步执行 `T-101`
## 当前目录要点
@@ -51,10 +51,10 @@
## 当前可运行内容
```bash
# 标准开发命令(在 MSYS2 bash 中运行)
.venv/bin/python manage.py check
.venv/bin/python manage.py test
.venv/bin/python manage.py runserver
# 标准开发命令(在 bash 中运行)
.venv/bin/python3.12 manage.py check
.venv/bin/python3.12 manage.py test
.venv/bin/python3.12 manage.py runserver
```
## 开始编码前检查