forked from Patwaji/SkyGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
31 lines (27 loc) · 857 Bytes
/
Copy pathsetup.sh
File metadata and controls
31 lines (27 loc) · 857 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
#!/bin/bash
echo "============================================"
echo " SkyGuard - Setup Script"
echo "============================================"
echo
echo "[1/4] Installing Python dependencies..."
pip install -r requirements.txt
echo
echo "[2/4] Setting up environment file..."
if [ ! -f .env ]; then
cp .env.example .env
echo "Created .env file from template"
echo "Please edit .env file with your API keys before running the app"
else
echo ".env file already exists"
fi
echo
echo "[3/3] Setup complete!"
echo
echo "============================================"
echo " Next Steps:"
echo "============================================"
echo "1. Edit .env file with your API keys"
echo "2. Run: streamlit run app/main_app.py"
echo "3. Open browser to: http://localhost:8501"
echo "============================================"
echo