-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.bat
More file actions
32 lines (28 loc) · 1.14 KB
/
start.bat
File metadata and controls
32 lines (28 loc) · 1.14 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
@echo off
:: ─────────────────────────────────────────────────────────────────────────────
:: Dataset Lab ─ Windows Quick-Start
:: Double-click this file to start the app, or run from Command Prompt.
:: ─────────────────────────────────────────────────────────────────────────────
title Dataset Lab
:: Check if install.py has been run (venv must exist)
if not exist "dataset-lab\.venv\Scripts\python.exe" (
echo.
echo [!] Setup not found. Running installer first...
echo.
python install.py
if errorlevel 1 (
echo.
echo [ERROR] Install failed. Please check the output above.
pause
exit /b 1
)
)
:: Start using the CLI runner
echo.
echo ^> Starting Dataset Lab...
echo.
python datasetlab.py start
echo.
echo Press any key to stop the servers and exit...
pause > nul
python datasetlab.py stop