Skip to content
2 min read · 355 words

Deployment Overview

Today, exactly one artifact is deployed: this documentation site (Vercel). The backend and frontend are local-development services with a documented path to production — not a pretense of one.

Current state

PieceTodayProduction path
Docs site✅ deployed — Vercel builds MkDocs from mainDocs Site
Backendlocal uvicorn on :8001, SQLite + Chroma on diskBackend
Frontendlocal next dev on :3000Frontend
Databasefile on disk, no backupsPostgres + managed backups (roadmap)
Containers / CI/CD❌ none — no Dockerfile, no pipelines exist in the reporoadmap

The platform has no authentication and no rate limiting — see Security. Deploy only into a private network / behind an authenticating proxy until hardening lands.

Deployment topology (target shape)

Rendering diagram…

The frontend is Vercel-native (it's Next.js); the backend needs any host that gives you a Python process plus a persistent disk — both stores are files, so ephemeral filesystems (classic serverless) lose all data on restart. That single constraint drives most hosting choices; details in Backend.

Environment variables in production

The full reference is Configuration. Production summary:

WhereVariables
Backend hostOPENAI_API_KEY (secret store!), optional OPENAI_MODEL, OPENAI_EMBEDDING_MODEL
Frontend hostAGENTOPS_API_BASE_URL, AGENTOPS_DASHBOARD_API_URL, AGENTOPS_AGENTS_API_URL → all pointing at the backend host
Docsnone

Section pages

  • Security — read before exposing anything
  • Roadmap — Docker/CI-CD plans