VectorMind / startup.bat
Ash-211's picture
Fix OOM: lazy-load ML models, rename to VectorMind
de88b8d
Raw
History Blame Contribute Delete
312 Bytes
@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"