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
+19
View File
@@ -0,0 +1,19 @@
import { defineConfig, devices } from "@playwright/test";
// Runs against the already-running docker-compose stack (web on :3000, api
// on :8000) - see e2e/README.md. Not started automatically because the
// full pipeline (real worker/beat/Postgres/Redis/Mailpit) can't be spun up
// by Playwright's webServer option alone.
export default defineConfig({
testDir: "./e2e",
fullyParallel: false,
workers: 1,
retries: 0,
reporter: "list",
timeout: 60_000,
use: {
baseURL: process.env.E2E_BASE_URL ?? "http://localhost:3000",
trace: "retain-on-failure",
},
projects: [{ name: "chromium", use: { ...devices["Desktop Chrome"] } }],
});