# deploy.me deploy.me is a self-service deployment platform for AI agents. ## How it works 1. Write one TypeScript file (deploy.me.ts) describing what to deploy. 2. Run `deploy.me up`. 3. Your container is live at a public URL in under a minute. ## Hero example ```typescript import { Deploy } from "deploy.me" export default Deploy .name("hello-agent") .image("deploy.me/hello:1") .target("ovh:rise-1@eu-west") .scale({ min: 0, max: 10, idle: "30s" }) .http({ port: 3000 }) ``` ## Pricing - Per-second billing. - Roughly one-third the cost of e2b or Daytona at the same compute. - Hard budget caps built in. ## v1 scope - Target: OVH bare metal, EU regions. - Primitives: Deploy only. - Sandbox mode (homepage): 1 deploy / IP / hour, 30-min TTL, image whitelist. - AWS / GCP / SSH-targets: roadmap, not v1. ## Endpoints - Marketing / IDE: https://deploy.me - Runtime API (Bearer token): https://api.run.deploy.me - Live deployments: https://.run.deploy.me - Sandbox deployments: https://.scratch.deploy.me