Files
mengyastore/dev.bat
2026-03-18 22:06:17 +08:00

11 lines
268 B
Batchfile

@echo off
setlocal
cd /d "%~dp0"
rem Backend (new window)
start "mengyastore-backend" cmd /k "cd /d ""%~dp0mengyastore-backend"" && go run ."
rem Frontend (new window)
start "mengyastore-frontend" cmd /k "cd /d ""%~dp0mengyastore-frontend"" && npm run dev"
endlocal