Initial commit: CI Agent competitive-intelligence monitoring app

FastAPI + Celery + Next.js + Postgres/Redis app with company monitoring,
source collection, LLM-based change analysis, enrichment, and account
security (Turnstile, escalating lockout, email verification).
This commit is contained in:
2026-08-05 10:48:20 -04:00
commit 1a4c80958f
365 changed files with 43541 additions and 0 deletions
View File
+38
View File
@@ -0,0 +1,38 @@
"""Declarative base + shared mixins for all ORM models."""
from __future__ import annotations
import uuid
from datetime import UTC, datetime
from sqlalchemy import DateTime
from sqlalchemy.orm import DeclarativeBase, Mapped, mapped_column
def utcnow() -> datetime:
return datetime.now(UTC)
def ensure_aware_utc(value: datetime) -> datetime:
"""SQLite's `DateTime(timezone=True)` silently drops tzinfo on read back
(Postgres does not). Anything read from the DB and compared against an
aware `datetime.now(UTC)` must go through this first so the app behaves
identically on both backends."""
if value.tzinfo is None:
return value.replace(tzinfo=UTC)
return value
class Base(DeclarativeBase):
pass
class UUIDPrimaryKeyMixin:
id: Mapped[uuid.UUID] = mapped_column(primary_key=True, default=uuid.uuid4, unique=True)
class TimestampMixin:
created_at: Mapped[datetime] = mapped_column(DateTime(timezone=True), default=utcnow)
updated_at: Mapped[datetime] = mapped_column(
DateTime(timezone=True), default=utcnow, onupdate=utcnow
)
+50
View File
@@ -0,0 +1,50 @@
"""Async SQLAlchemy engine/session setup.
Works against Postgres (`postgresql+psycopg://...`) or SQLite
(`sqlite+aiosqlite://...`) depending on `DATABASE_URL` - the same models and
repositories run against either, which is what makes the no-Docker local dev
path possible.
"""
from __future__ import annotations
from collections.abc import AsyncGenerator
from functools import lru_cache
from sqlalchemy.ext.asyncio import (
AsyncEngine,
AsyncSession,
async_sessionmaker,
create_async_engine,
)
from app.core.config import get_settings
@lru_cache
def get_engine() -> AsyncEngine:
settings = get_settings()
connect_args = {}
if settings.database_url.startswith("sqlite"):
connect_args = {"check_same_thread": False}
return create_async_engine(
settings.database_url,
echo=False,
pool_pre_ping=True,
connect_args=connect_args,
)
@lru_cache
def get_sessionmaker() -> async_sessionmaker[AsyncSession]:
return async_sessionmaker(bind=get_engine(), expire_on_commit=False)
async def get_db() -> AsyncGenerator[AsyncSession, None]:
session_factory = get_sessionmaker()
async with session_factory() as session:
try:
yield session
except Exception:
await session.rollback()
raise