Features: - FastAPI backend with stocks, news, signals, watchlist, analytics endpoints - React frontend with TailwindCSS dark mode trading dashboard - Celery workers for news fetching, sentiment analysis, pattern detection - TimescaleDB schema for time-series stock data - Docker Compose setup for all services - OpenAI integration for sentiment analysis
6 lines
102 B
Python
6 lines
102 B
Python
"""Celery workers module."""
|
|
|
|
from app.workers.celery_app import celery_app
|
|
|
|
__all__ = ["celery_app"]
|