For the complete documentation index, see llms.txt.

Documentation

Repository docs

This route renders the repository README and markdown under docs/ .

Source: README.md (repository root) + docs/*.md index below

Rendered document

README.md (repository root)

Parsed server-side (markdown to HTML in the app). Same bytes you get from the checkout.

Smart Deploy

<p align="center"> <img src="public/icons/icon.svg" alt="Smart Deploy logo" width="96" height="96" /> </p> <p align="center"> <strong>Smart Deploy</strong> is a preview-driven deployment platform for solo developers. </p> <p align="center"> <a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache_2.0-blue.svg" alt="Apache 2.0 license" /></a> <a href="https://github.com/anirudh-makuluri/smart-deploy/actions/workflows/ci.yml"><img src="https://github.com/anirudh-makuluri/smart-deploy/actions/workflows/ci.yml/badge.svg?branch=main" alt="CI status" /></a> <a href="https://github.com/anirudh-makuluri/smart-deploy/issues"><img src="https://img.shields.io/github/issues/anirudh-makuluri/smart-deploy" alt="Open issues" /></a> <a href="https://github.com/anirudh-makuluri/smart-deploy/pulls"><img src="https://img.shields.io/github/issues-pr/anirudh-makuluri/smart-deploy" alt="Open pull requests" /></a> <a href="https://github.com/anirudh-makuluri/smart-deploy/commits/main"><img src="https://img.shields.io/github/last-commit/anirudh-makuluri/smart-deploy/main" alt="Last commit" /></a> </p> <p align="center"> Scan a repo, review a live blueprint of what will run, edit infrastructure files in context, and deploy only after the plan makes sense. </p> <p align="center"><em>Preview the deploy. Then ship it.</em></p>

Highlights

What you getWhy it matters
Preview-first workflowSee services, routing, and artifacts before anything runs
Blueprint viewOne place to understand build steps, containers, and traffic flow
Smart AnalysisRailpack build plans with optional build verification
Multi-target deploysECS Fargate for containers, S3 for static sites
Live deploy feedbackStream logs, track run history, and watch health status update in place
Queued deploy executionEach deploy runs as an isolated ECS task, ordered per service via SQS
Deployment AgentAsk about your deployments, history, and runtime health

Workflow

  1. Scan and define — Connect a repo and run Smart Analysis to resolve deploy units and target shape.
  2. Preview — Open the blueprint, review the deployment path, and adjust config before anything runs.
  3. Deploy — Start the deploy when the preview looks right, then follow live logs, run history, and health updates.
flowchart LR
  A[Repo scan] --> B[Blueprint preview]
  B --> C{Plan looks right?}
  C -->|Edit| B
  C -->|Yes| D[Deploy]
  D --> E[Logs and health]

Deploy targets

TargetBest forWhat Smart Deploy provisions
ECS FargateServer apps, Railpack builds, existing Docker imagesCodeBuild → ECR → Fargate task behind a shared ALB
Static sitesSPAs and static builds (no runtime)CodeBuild → S3, optional CloudFront invalidation

Deployment execution

When you start a deploy, Smart Deploy enqueues the run and executes it on AWS — not on the WebSocket host.

flowchart LR
  UI[Dashboard] --> WS[WebSocket worker]
  WS --> SQS[SQS FIFO queue]
  SQS --> Lambda[Lambda handler]
  Lambda --> ECS[ECS Fargate task]
  ECS --> AWS[CodeBuild / ECR / ECS / S3]
  ECS -->|live logs| WS
  WS --> UI
  1. The WebSocket worker records the run and sends a message to an SQS FIFO queue (one in-flight deploy per user/repo/service).
  2. A Lambda function consumes the queue and launches a one-off ECS Fargate task (deployment-runner.js).
  3. That task runs the pipeline (CodeBuild, ECR, ECS rollout, S3 sync, verification).
  4. Live step logs stream back to the UI through the WebSocket worker via an HTTP event bridge.

Provision the queue, Lambda, and deployment worker task with infra/smart-deploy-platform and set DEPLOYMENT_QUEUE_URL in .env. Roll out worker and Lambda images with ./scripts/update.sh.

Documentation

User-facing guides for deploying and debugging your apps:

Browse all docs in the app at /docs. For AI agents: /llms.txt and /llms-full.txt.

CLI beta

The Smart Deploy CLI currently supports browser-based account login and local project selection. Smart Analysis and deployment commands are still in development.

npx @arm8tron/smart-deploy@beta login

See the CLI guide for the available commands and local-development setup.

Tech stack

  • Next.js 16, React 19, TypeScript
  • Tailwind CSS 4, shadcn/ui
  • Better Auth, Supabase
  • GraphQL (Yoga) + REST API routes
  • WebSocket worker for real-time UI, Deployment Agent, and runtime health
  • SQS + Lambda + ECS Fargate for queued deployment execution
  • AWS SDK (SQS, Lambda, CodeBuild, ECR, ECS, ALB, Route 53, S3, CloudFront, Secrets Manager)
  • Railpack + Mise for container builds
  • Vitest, Playwright

License

Smart Deploy is licensed under the Apache License 2.0. See LICENSE.

Smart Deploy was created and is maintained by Anirudh Raghavendra Makuluri.

Forks and derivative projects should preserve the required license and attribution notices, and should not imply that they are the official Smart Deploy project unless explicitly authorized.