feat: add cross-platform start.sh script and update package.json for macOS/Linux

This commit is contained in:
anoracleofra-code
2026-03-04 23:12:14 -07:00
parent 8ed321f2ba
commit 3888c91ab3
5 changed files with 95 additions and 4 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently --names \"NEXT,API\" --prefix-colors \"cyan,yellow\" \"next dev\" \"cd ../backend && venv\\Scripts\\python.exe main.py\"",
"dev": "concurrently \"npm run dev:frontend\" \"cd ../backend && python -m uvicorn main:app --reload\"",
"dev:frontend": "next dev",
"dev:backend": "cd ../backend && venv\\Scripts\\python.exe main.py",
"build": "next build",
@@ -37,4 +37,4 @@
"tailwindcss": "^4",
"typescript": "^5"
}
}
}