初次提交请多关照

This commit is contained in:
2025-09-28 00:15:16 +08:00
commit 3d0c77d1e6
14 changed files with 3183 additions and 0 deletions

29
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,29 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Poetry: Export requirements.txt (Production)",
"type": "shell",
"command": "poetry export -f requirements.txt --output requirements.txt --without-hashes",
"group": "build",
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": [],
"detail": "导出生产环境依赖到 requirements.txt不包含开发依赖和哈希值。"
},
{
"label": "Poetry: Export requirements.txt (Full)",
"type": "shell",
"command": "poetry export -f requirements.txt --output requirements.txt",
"group": "build",
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": [],
"detail": "导出所有依赖(包括生产和开发依赖)到 requirements.txt包含哈希值以确保完全一致。"
}
]
}