Web: Add start script for frontend and backend

This commit is contained in:
Eero Holmala 2023-06-02 11:37:53 +03:00
parent a2a52f3afc
commit 069a2c4146

8
web/start.bat Normal file
View File

@ -0,0 +1,8 @@
@echo off
pushd .\Frontend
start powershell.exe -c "npm run dev"
popd
pushd .\Backend
start powershell.exe -c "dotnet watch"
popd