-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal-setup.bat
More file actions
37 lines (31 loc) · 1.07 KB
/
Copy pathfinal-setup.bat
File metadata and controls
37 lines (31 loc) · 1.07 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
@echo off
echo ========================================
echo Final Setup - Complete Installation
echo ========================================
echo.
echo [1/7] Starting Backend Server...
cd backend
start "Backend Server" cmd /k "venv\Scripts\activate.bat && python simple_server.py"
echo Backend starting at http://127.0.0.1:8000
echo.
echo [2/7] Installing missing frontend dependencies...
cd ..\frontend
npm install
echo.
echo [3/7] Verifying all packages are installed...
npm list react react-dom react-scripts react-router-dom @heroicons/react tailwindcss reactflow zustand react-query react-hot-toast axios clsx framer-motion @headlessui/react
echo.
echo [4/7] Checking for compilation errors...
npm run build --dry-run 2>nul || echo "Build check completed"
echo.
echo [5/7] Starting frontend development server...
echo Frontend will start at http://localhost:3000
echo.
echo ========================================
echo SERVERS STARTING:
echo Backend: http://127.0.0.1:8000
echo Frontend: http://localhost:3000
echo ========================================
echo.
npm start
pause