llms.txt Content
# Staticbot
> Deploy websites and apps to your own AWS without vendor lock-in. Migrate from Supabase-hosted AI builders (Lovable, Bolt, Base44, Replit, v0, Manus) to infrastructure you own and control.
- Full content for LLMs: https://staticbot.dev/llms-full.txt
Staticbot automates the full migration pipeline: it discovers your Supabase project (edge functions, storage buckets, auth config, database), migrates each component in phases (schema, data, auth users, OAuth identities, edge functions, storage files, secrets, cron jobs, auth config), and deploys your frontend to AWS CloudFront + S3 via Terraform. After migrating, Continuous Sync keeps your target infrastructure up-to-date with Lovable — every push automatically applies new database migrations, deploys edge functions, and rebuilds your frontend.
## Product
- Free tier available — no credit card required
- Sign up at https://app.staticbot.dev
- Supports custom domains (CNAME / ANAME), EU hosting, and Staticbot-managed AWS accounts
- Integrates with Supabase, Namecheap, and GitHub
## REST API
Base URL: `https://app.staticbot.dev/api/v1`
Authentication: `Authorization: Bearer sk-<your-api-key>`
Keys are generated in the dashboard under Settings → API Keys. They are org-scoped, prefixed with `sk-`, and never expire but can be revoked.
### Templates
- `GET /templates` — list all available infrastructure templates
- `GET /templates/{id}` — get template details including configuration variables
### Stacks
- `GET /stacks` — list all infrastructure stacks
- `GET /stacks/{id}` — get stack details
- `POST /stacks` — create a new infrastructure stack from a template with auto-generated, custom, or existing domain
### Deployments
- `GET /deployments` — list deployments (optional `?stackId=` filter)
- `GET /deployments/{id}` — get deployment status; when WAITING, includes required DNS records
- `POST /deployments` — create a deployment for a stack (APPLY, PLAN, or DRY_RUN)
- `POST /depl