forked from Patwaji/SkyGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
31 lines (28 loc) · 833 Bytes
/
Copy pathsetup.bat
File metadata and controls
31 lines (28 loc) · 833 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
@echo off
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 not exist .env (
copy .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
)
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.
pause