Files
lollms_hub/reset_admin_password.bat
Saifeddine ALOUI b5c2dfdade chore(rebrand): rename project from "Ollama Proxy Fortress" to "lollms hub"
Update all project references, documentation, and assets to reflect the new
branding. Changes include:
- Rename application references in README, CONTRIBUTING, DEVELOPMENT
- Update default database filename from ollama_proxy.db to lollms_hub.db
- Update .env.example header and bootstrap configuration
- Adjust .gitignore for new database name
- No functional code changes, purely cosmetic rebranding
2026-03-22 01:12:20 +01:00

29 lines
802 B
Batchfile

@echo off
setlocal
:: ==================================================================
:: LoLLMs Hub Fortress - Admin Password Reset Runner for Windows
:: ==================================================================
set VENV_DIR=venv
:: --- Check if virtual environment exists ---
if not exist "%VENV_DIR%\Scripts\activate.bat" (
echo [ERROR] Python virtual environment not found at '.\%VENV_DIR%'.
echo [ERROR] Please run 'run_windows.bat' first to complete the setup.
pause
exit /b 1
)
:: --- Activate virtual environment and run the script ---
echo [INFO] Activating Python virtual environment...
call .\%VENV_DIR%\Scripts\activate.bat
echo [INFO] Running the admin password reset script...
echo.
python reset_admin_password.py
echo.
echo [INFO] Script finished.
pause