Add touch-ready Filament login and admin update tooling

This commit is contained in:
soeren
2026-01-18 15:34:16 +01:00
parent 6f6ea8b24f
commit 30ca8082b3
31 changed files with 1940 additions and 1159 deletions

16
git-sync.bat Normal file
View File

@@ -0,0 +1,16 @@
@echo off
setlocal
for /f "delims=" %%b in ('git rev-parse --abbrev-ref HEAD') do set "BRANCH=%%b"
if "%BRANCH%"=="" (
echo Unable to determine current branch.
exit /b 1
)
git pull --ff-only origin "%BRANCH%"
if errorlevel 1 (
exit /b 1
)
echo Git synchronization complete.