-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
Β·37 lines (31 loc) Β· 962 Bytes
/
Copy pathinstall.sh
File metadata and controls
executable file
Β·37 lines (31 loc) Β· 962 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
35
36
37
#!/bin/bash
echo "ποΈ maVoice Installation Script"
echo "============================="
# Check if we're in WSL2
if grep -qi microsoft /proc/version 2>/dev/null; then
echo "β
WSL2 detected - perfect environment!"
else
echo "βΉοΈ Native Linux detected"
fi
echo ""
echo "π¦ Installing all dependencies..."
# Install root dependencies
echo "β Installing root dependencies..."
npm install
# Install frontend dependencies
echo "β Installing frontend dependencies..."
cd src-tauri/aquavoice-frontend && npm install
cd ../../
echo ""
echo "β
Installation complete!"
echo ""
echo "π Next steps:"
echo "1. Add your Groq API key:"
echo " echo 'VITE_GROQ_API_KEY=your_key_here' > src-tauri/aquavoice-frontend/.env"
echo ""
echo "2. Run the app:"
echo " npm run dev"
echo ""
echo "π― Look for a tiny 72x20px floating widget at coordinates (300, 800)"
echo " Right-click + drag to move it"
echo " Double-click to start recording"