Initial commit

This commit is contained in:
2026-04-23 21:38:24 -04:00
commit 63e12a9636
1762 changed files with 1672620 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
@echo off
echo Stopping any existing instances...
for /f "tokens=5" %%a in ('netstat -ano ^| findstr :58461 ^| findstr LISTENING') do (
echo Killing process %%a
taskkill /F /PID %%a 2>nul
)
echo Starting application...
cd src\PowderCoating.Web
dotnet watch run