CoolFace
Apppublic

malikparth05/alpha-sentiment-engine

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
start.sh18 linesDownload Raw Back to root
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