chore: init repository with project sources

This commit is contained in:
2025-10-30 10:29:33 +01:00
commit 65f1175ba7
97 changed files with 7762 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
@echo off
setlocal
REM Wrapper to run export.ps1 with double-click or CLI
set SCRIPT_DIR=%~dp0
powershell -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%export.ps1" %*
set EXITCODE=%ERRORLEVEL%
if %EXITCODE% NEQ 0 (
echo Export failed. Exit code %EXITCODE%.
exit /b %EXITCODE%
)
echo Archive created. Check the dist\ folder.
endlocal