malikparth05/alpha-sentiment-engine
0
1#!/bin/bash2# ==========================================3# Sentix Alpha โ Unified Container Startup4# Launches the Web UI + Background Sync Engine5# ==========================================6 7echo "๐ SENTIX ALPHA โ INITIALIZING..."8 9# Ensure the database is ready or clean for fresh deployment10if [ -f "sentiment_data.db" ]; then11 echo "๐พ Seed database found."12fi13 14# Starting the unified engine15# The scraper now runs as a daemon thread inside app.py16echo "๐ Launching Unified Intelligence Engine on port 7860..."17python app.py18 