Improve dev startup: model download script, loading state in health check, faster polling

Agent-Logs-Url: https://github.com/JezzWTF/vibepod/sessions/3c05c740-b0a3-497d-88f1-dfa63121424d

Co-authored-by: LyAhn <27559362+LyAhn@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-27 16:00:53 +00:00
committed by GitHub
parent 3974a4cf69
commit 11ffc7df7c
8 changed files with 546 additions and 46 deletions
+9 -6
View File
@@ -4,20 +4,23 @@
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"dev:all": "concurrently --names \"TTS,NEXT\" --prefix-colors \"cyan,magenta\" \"cd server && bash start.sh\" \"next dev --turbopack\"",
"build": "next build --turbopack",
"start": "next start"
"start": "next start",
"server": "cd server && bash start.sh"
},
"dependencies": {
"next": "15.5.15",
"react": "19.1.0",
"react-dom": "19.1.0",
"next": "15.5.15"
"react-dom": "19.1.0"
},
"devDependencies": {
"typescript": "^5",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@tailwindcss/postcss": "^4",
"tailwindcss": "^4"
"concurrently": "^9.2.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}