-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
34 lines (28 loc) · 834 Bytes
/
Copy pathsetup.bat
File metadata and controls
34 lines (28 loc) · 834 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
31
32
33
34
@echo off
setlocal
echo.
echo ==========================================
echo 🎙️ WhisperHook Local Development Setup
echo ==========================================
echo.
echo [+] Installing Node.js dependencies...
call npm install
echo.
echo [+] Setting up Python environment...
if not exist "python-core\venv" (
echo [i] Creating virtual environment in python-core\venv...
python -m venv python-core\venv
)
echo.
echo [+] Installing Python requirements...
python-core\venv\Scripts\python -m pip install --upgrade pip
python-core\venv\Scripts\python -m pip install -r python-core\requirements.txt
echo.
echo ==========================================
echo ✅ Setup complete!
echo.
echo To start WhisperHook in development mode:
echo npm run tauri dev
echo ==========================================
echo.
pause