-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.bat
More file actions
28 lines (24 loc) · 567 Bytes
/
Copy pathstart.bat
File metadata and controls
28 lines (24 loc) · 567 Bytes
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
@echo off
echo 🚀 Starting AI Project Generator...
echo.
REM Check if node_modules exists
if not exist "node_modules" (
echo 📦 Installing dependencies...
call npm run setup
echo.
)
REM Check if client/node_modules exists
if not exist "client\node_modules" (
echo 📦 Installing client dependencies...
pushd client
call npm install
popd
echo.
)
echo 🌟 Starting development servers...
echo Frontend: http://localhost:3000
echo Backend: http://localhost:5000
echo.
echo Press Ctrl+C to stop the servers
echo.
call npm run dev