Files
mengyastore/dev.bat

11 lines
274 B
Batchfile

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