Spaces:
Sleeping
Sleeping
File size: 312 Bytes
d8c0ee6 de88b8d d8c0ee6 | 1 2 3 4 5 6 7 8 9 | @echo off
echo Starting both frontend and backend development servers
REM Start the backend in a new cmd using the venv Python 3.13
start cmd /k "cd backend && ..\venv\Scripts\activate && uvicorn main:app --reload"
REM Start the frontend in a new cmd and keep it open
start cmd /k "cd frontend && npm run dev" |