Skip to main content
For comprehensive deployment guides, see the Deployment section.

Quick Reference

Deploy to Reminix Cloud

  1. Push your code to GitHub
  2. Import the repository in the Reminix Dashboard
  3. Set secrets in Project Settings → Secrets
  4. Every push auto-deploys
// src/index.ts
import { agent, serve } from '@reminix/runtime';

const myAgent = agent('my-agent', {
  description: 'A simple agent',
  handler: async ({ prompt }) => `Hello: ${prompt}`
});

const port = parseInt(process.env.PORT || '8080');
serve({ agents: [myAgent], port });

Self-Host

Run anywhere with Docker:
docker build -t my-agent .
docker run -p 8080:8080 my-agent
See Self-Hosting for Kubernetes, AWS, GCP, and more.

Next Steps