29 lines
562 B
Batchfile
29 lines
562 B
Batchfile
@echo off
|
|
echo ========================================
|
|
echo Family Hub - Complete Diagnostics
|
|
echo ========================================
|
|
echo.
|
|
|
|
cd /d D:\Hosted\familyhub\backend
|
|
call venv\Scripts\activate
|
|
|
|
echo.
|
|
echo === STEP 1: Check Database Configuration ===
|
|
echo.
|
|
python diagnose.py
|
|
|
|
echo.
|
|
echo.
|
|
echo === STEP 2: Test Password Verification ===
|
|
echo.
|
|
python test_passwords.py
|
|
|
|
echo.
|
|
echo.
|
|
echo === STEP 3: Check Backend Server Logs ===
|
|
echo If backend is running, you should see request logs
|
|
echo If login is failing, you should see an error
|
|
echo.
|
|
|
|
pause
|