Claude Code app deployment
Deploy an app built with Claude Code to production.
Give Claude Code a hosted deployment surface without leaving its terminal workflow. It can inspect source, define the runtime, run builds, open previews, and use logs to repair a release before you approve production.
Source to production
- 01Claude Code source
- 02Adios workspace
- 03Build + preview + logs
- 04Human production approval
Production stays separated from the agent's preparation work until you approve the release.
Source
Reviewable files and config
Preview
Healthy before production
Evidence
Build output and runtime logs
Control
Human approval gate
Deployable projects
Keep the generated app. Add the production contract.
Adios works from the project source and its normal framework commands. It does not require the app to be regenerated in a proprietary format.
- Full-stack JavaScript and TypeScript apps
- Python, Go, Ruby, and .NET APIs
- Background workers and scheduled processes
- Applications with managed data and messaging services
One-command MCP setup
Add a deployment workspace to Claude Code.
Register the hosted Adios endpoint with Claude Code, then use /mcp to complete browser authorization. The connection is managed by Claude Code and does not require a platform token in the repository.
claude mcp add --transport http adios https://api.adios.dev/v1/mcpExample agent prompt
Ask for a verified release, not only a deploy command.
Use this in Claude Code after Adios appears as connected in /mcp.
“Deploy this repository with Adios. First inspect the framework, scripts, required environment variables, and services. Make the deployment contract explicit in adios.yaml, run the production build, diagnose and fix failures from the logs, then give me a healthy preview and a release summary for approval.”
Reviewable configuration
The agent writes down how the app should run.
The exact manifest should match the repository. This example makes a conventional Node.js production build, port, and health endpoint explicit so the release can be reviewed and repeated.
Learn how adios.yaml worksname: vibe-app
region: de
build_cmd: npm ci && npm run build
start_cmd: npm start
runtime:
name: node@24
port: 3000
health_path: /api/healthSource-to-release workflow
Five checks between generated code and production.
- 01
Inspect the project source
Identify the framework, package manager, build output, start command, expected port, environment variables, and any stateful services before creating a release.
- 02
Make the runtime contract visible
Write or update adios.yaml so the build command, start command, runtime, port, health check, secrets, and managed resources can be reviewed beside the code.
- 03
Build and open a preview
Run the production build in an isolated workspace, start the application, and inspect a preview URL before treating the project as deployable.
- 04
Read logs and repair failures
Use build output, runtime logs, and the configured health path to diagnose failures. Apply the fix to source, then rebuild the same project rather than patching production by hand.
- 05
Review and approve production
Check the final source diff, configuration, preview, and health result. A person approves the production deployment after the agent has prepared a healthy release.
When the build fails
Give the agent evidence it can act on.
Claude Code can follow a failed build from the command output back to the responsible file, dependency, or runtime setting. It applies the correction in the source-backed workspace and verifies a new preview before production is considered.
build · failed
↓ inspect output
source + adios.yaml · updated
↓ rebuild and health check
preview · healthy
↓ human review
production · ready for approval
Framework deployment
Match the generated project to its runtime.
Deploy Next.js
Server-rendered routes, route handlers, static output, and persistent Node.js apps.
Open runtime guideDeploy React
Vite and other React frontends served as static or Node-backed applications.
Open runtime guideDeploy Node.js
APIs, background workers, and full-stack JavaScript services with explicit start commands.
Open runtime guideDeploy Postgres
Managed relational data for apps that need durable state and a private connection string.
Open runtime guideFAQ
Deploying Claude Code apps with Adios.
Can Claude Code deploy through Adios directly?
Yes. Connect the hosted Adios MCP server to Claude Code, complete OAuth, and the agent can use scoped workspace, build, preview, log, and deployment tools. Production remains approval-gated.
Does Adios deploy only Next.js apps?
No. Adios supports explicit build and start commands for common frontend, full-stack, API, worker, and data-backed projects. The detected framework changes the runtime contract; the source-to-preview-to-production workflow stays consistent.
Can the AI agent deploy to production without approval?
No. The agent can prepare source, configuration, builds, previews, and diagnostics, but the production transition is approval-gated so a person can review the release first.
What happens when the production build fails?
The build output and runtime logs remain available to the workspace. The agent can use that evidence to update the source or configuration and run a new build before asking for production approval.
Vibe coding tools
Deploy from another AI coding workflow.
From source to healthy release
Let Claude Code prepare the deploy. Keep production approval yours.
Start with the source you already have, verify it in an Adios preview, and promote only the release you reviewed.
Start free trial