Files
konabot/.vscode/tasks.json
2025-09-28 00:15:16 +08:00

29 lines
1.0 KiB
JSON
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.

{
"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包含哈希值以确保完全一致。"
}
]
}