-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
24 lines (20 loc) · 772 Bytes
/
Copy pathsetup.sh
File metadata and controls
24 lines (20 loc) · 772 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
#!/bin/bash
# setup.sh - Quick setup script for the application
echo "Setting up Nokia Hackathon Software Release Chatbot..."
# Install dependencies
echo "Installing Python dependencies..."
pip install -r requirements.txt
# Create .env file if it doesn't exist
if [ ! -f .env ]; then
echo "Creating .env file from template..."
cp .env.example .env
echo "⚠️ Please edit .env file and add your actual SMTP password!"
echo " You can get a Gmail app password from: https://support.google.com/accounts/answer/185833"
else
echo ".env file already exists"
fi
echo "✅ Setup complete!"
echo ""
echo "Next steps:"
echo "1. Edit .env file and set your SMTP_PASSWORD"
echo "2. Run the application with: streamlit run software_release_chatbot/code.py"