hMarket Trae ilk versiyon

This commit is contained in:
hOLOlu
2026-02-03 01:22:08 +03:00
commit 2b861156fe
74 changed files with 42127 additions and 0 deletions

20
start-dev.bat Normal file
View File

@@ -0,0 +1,20 @@
@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.