-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo_mode.bat
More file actions
49 lines (40 loc) · 1.25 KB
/
Copy pathdemo_mode.bat
File metadata and controls
49 lines (40 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@echo off
title Alpha Evolve v2.0 - Quick Demo
color 0B
cls
echo ======================================================================
echo Alpha Evolve v2.0 - Quick Demo Launcher
echo ======================================================================
echo.
echo This will start the Demo Mode with mock data.
echo No external APIs required - perfect for quick demonstrations!
echo.
echo ======================================================================
echo.
REM Check if Python is available
python --version >nul 2>&1
if errorlevel 1 (
echo [ERROR] Python is not installed or not in PATH!
echo Please install Python 3.9+ and try again.
pause
exit /b 1
)
REM Activate virtual environment if exists
if exist "healthcare_env\Scripts\activate.bat" (
echo [INFO] Activating virtual environment...
call healthcare_env\Scripts\activate.bat
)
REM Set demo mode environment variables
set ALPHA_EVOLVE_MODE=demo
set DEMO_MODE=true
set USE_MOCK_DATA=true
echo.
echo [INFO] Starting Alpha Evolve v2.0 Demo Mode...
echo [INFO] Dashboard will open at http://localhost:8501
echo.
echo Press Ctrl+C to stop the demo
echo.
timeout /t 2 /nobreak >nul
REM Start Streamlit in demo mode
streamlit run src/dashboard/app.py --server.port 8501
pause