mirror of
https://github.com/ParisNeo/lollms_hub.git
synced 2026-05-04 03:01:01 -04:00
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
29 lines
802 B
Batchfile
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 |