claude's gae

This commit is contained in:
2026-01-20 16:05:31 +01:00
parent e00c47a56f
commit afa053f006
6 changed files with 258 additions and 149 deletions
+16
View File
@@ -0,0 +1,16 @@
@echo off
echo Building Azure Key Vault Secret Manager...
echo.
REM Clean previous builds
if exist "dist" rmdir /s /q "dist"
if exist "build" rmdir /s /q "build"
REM Build executable
pyinstaller build.spec --clean --noconfirm
echo.
echo Build complete!
echo Executable location: dist\AzureKeyVaultSecretManager.exe
echo.
pause