Skip to Content
DeploymentOverview

Deployment

auxilia can be deployed on any platform that supports Docker containers. The stack consists of three services:

  • Backend (FastAPI) — Python 3.12+
  • Web (Next.js) — Node.js 20+
  • Database — PostgreSQL 17 + Redis 7

Docker Images

The project provides Dockerfiles for both services:

backend/Dockerfile # FastAPI backend web/Dockerfile # Next.js frontend

Environment Variables

All configuration is done through environment variables. See the Get Started guide for the full list.

Key production considerations:

VariableProduction Value
JWT_SECRET_KEYA strong random string (32+ characters)
COOKIE_SECUREtrue (requires HTTPS)
FRONTEND_URLYour public URL (e.g. https://auxilia.example.com)
MCP_API_KEY_ENCRYPTION_SALTA secret string used to derive the encryption key for stored API keys

Deployment Guides

Last updated on