8 lines
130 B
Batchfile
8 lines
130 B
Batchfile
@echo off
|
|
pushd .\Frontend
|
|
start powershell.exe -c "npm run dev"
|
|
popd
|
|
|
|
pushd .\Backend
|
|
start powershell.exe -c "dotnet watch"
|
|
popd |