Files
hMarket/start-dev.bat
2026-02-03 01:22:08 +03:00

20 lines
547 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
echo HMarket Development Server Başlatılıyor...
echo.
REM Mevcut terminalleri kapat
taskkill /f /im node.exe 2>nul
timeout /t 2 /nobreak >nul
echo Backend servisi başlatılıyor...
start "HMarket Backend" cmd /k "cd /d backend && npm start"
echo Frontend servisi başlatılıyor...
start "HMarket Frontend" cmd /k "cd /d frontend && npm start"
echo.
echo Her iki servis de başlatıldı!
echo Backend: http://localhost:7001
echo Frontend: http://localhost:7000
echo.
echo Servisleri durdurmak için bu pencereyi kapatabilirsiniz.