-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
31 lines (27 loc) · 853 Bytes
/
Copy pathsetup.bat
File metadata and controls
31 lines (27 loc) · 853 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
REM Setup script for HealthPalAI - Run this after cloning the repository
echo 🏥 HealthPalAI Setup Script
echo ============================
echo.
REM Check if .env exists
if exist .env (
echo ✅ .env file already exists
) else (
echo 📝 Creating .env file from template...
copy .env.example .env
echo ⚠️ IMPORTANT: Edit .env file and add your actual API keys!
echo.
)
REM Install dependencies
echo 📦 Installing Python dependencies...
pip install -r requirements.txt
echo.
echo ✨ Setup complete!
echo.
echo 📋 Next steps:
echo 1. Edit the .env file and add your MISTRAL_API_KEY
echo 2. (Optional) Generate a secure SECRET_KEY with: python -c "import secrets; print(secrets.token_hex(32))"
echo 3. Run the application with: python app.py
echo.
echo 📚 For more information, see SECURITY_FIXES.md
pause