-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTART_APP.bat
More file actions
30 lines (30 loc) · 1.01 KB
/
START_APP.bat
File metadata and controls
30 lines (30 loc) · 1.01 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
@echo off
echo ================================================
echo Research Profiler AI - Quick Start
echo ================================================
echo.
echo This will start both the Flask API and Streamlit frontend
echo.
echo Step 1: Starting Flask API...
echo ================================================
start cmd /k "cd API && python main.py"
timeout /t 5 /nobreak >nul
echo.
echo Step 2: Starting Streamlit Frontend...
echo ================================================
start cmd /k "streamlit run streamlit_app.py"
echo.
echo ================================================
echo Both services are starting!
echo.
echo Flask API: http://127.0.0.1:4040 (or check terminal for port)
echo Streamlit: http://localhost:8501
echo.
echo NOTE: Flask is configured to run on port 4040
echo If you need port 5000, edit API/main.py line 1031
echo.
echo The Streamlit app will open in your browser shortly...
echo ================================================
echo.
echo Press any key to exit this window...
pause >nul