#!/bin/bash
# Trending Topics Dashboard Launcher
# Double-click or run: ./start_dashboard.sh

cd "$(dirname "$0")"

echo "Starting Trending Topics Dashboard..."
echo ""

# Activate virtual environment
source venv/bin/activate

# Start the web server
echo "Dashboard running at: http://localhost:5000"
echo "Press Ctrl+C to stop"
echo ""

python web.py
