251201:1700 Prepare to version 1.5 use spec-kit

This commit is contained in:
admin
2025-12-01 17:00:32 +07:00
parent 71c091055a
commit fc0580e14c
13 changed files with 2788 additions and 2690 deletions

81
.vscode/tasks.json.bak vendored Normal file
View File

@@ -0,0 +1,81 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Backend: Dev",
"type": "shell",
"command": "pnpm run start:dev",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Backend: Build",
"type": "shell",
"command": "pnpm run build",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"group": "build",
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Backend: Lint",
"type": "shell",
"command": "pnpm run lint",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Backend: Test",
"type": "shell",
"command": "pnpm run test",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"group": "test",
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Backend: Test E2E",
"type": "shell",
"command": "pnpm run test:e2e",
"options": {
"cwd": "${workspaceFolder}/backend"
},
"group": "test",
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}