-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
30 lines (28 loc) · 727 Bytes
/
setup.bat
File metadata and controls
30 lines (28 loc) · 727 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
29
30
@echo off
echo ========================================
echo Real-Time Object Detection Setup
echo ========================================
echo.
echo Step 1: Installing dependencies...
call npm install
if %errorlevel% neq 0 (
echo ERROR: Failed to install dependencies
pause
exit /b 1
)
echo.
echo ========================================
echo Setup Complete!
echo ========================================
echo.
echo IMPORTANT: You need to add the ONNX model file before running:
echo 1. Place yolov8n.onnx in: public\models\
echo 2. See MODEL_SETUP.md for instructions
echo.
echo To start the development server, run:
echo npm run dev
echo.
echo To build for production, run:
echo npm run build
echo.
pause