@echo off
REM Feater dev launcher — double-click this file to start both servers.
REM %~dp0 is this script's own folder, so it works even though the path has a space.
cd /d "%~dp0"

echo ============================================
echo   Starting Feater (API + Web)
echo ============================================
echo.
echo   API : http://localhost:4000/api
echo   Web : http://localhost:3000
echo.
echo   Two windows will open. Close them to stop.
echo ============================================

start "Feater API" cmd /k "npm run dev:api"
start "Feater Web" cmd /k "npm run dev:web"
