Review real source
Start with an existing Git repository, local project, or template. Every change lands in files your team can inspect, test, and commit.
Adios gives engineering teams one platform to review code, run previews, manage infrastructure, inspect logs, handle secrets, and deploy healthy releases. Whether a change comes from a developer or an AI agent, it stays connected to source and Git history.
Plans from $10/month.
From source to production
Code, configuration, previews, logs, health checks, and deployment stay connected. Your team can review what changed, run it before release, and see exactly what is serving production.
Start with an existing Git repository, local project, or template. Every change lands in files your team can inspect, test, and commit.
Build and preview the app with its production commands. Use logs and health checks to catch issues before it goes live.
adios.yaml keeps build commands, runtime settings, resources, secrets, regions, and routes beside the code.
Keep the source revision, build output, runtime logs, health status, and live route tied to the same release.
Application configuration
adios.yaml keeps build commands, startup behavior, health checks, resources, regions, and secret references beside the source. The same reviewed configuration follows the application from preview to production.
name: node-api
region: de
replicas: 2
build_cmd: npm ci && npm run build
start_cmd: node dist/server.js
runtime:
name: node@24
port: 8080
memory_mb: 1024
health_path: /healthz
secrets:
DATABASE_URL: secret://DATABASE_URLControl your infrastructure and codebases without leaving your favorite AI clients or team chat. Adios exposes secure endpoints, plugins, and Model Context Protocol (MCP) servers so you can build, preview, and deploy full-stack apps using pure English.
Build and manage the full application surface
Templates
Start from official Adios templates for web apps, API backends, databases, caches, and queues. Deploy in the console or clone locally and run adios up.
JavaScript and TypeScript Next.js starters using npm or pnpm and Adios runtime config.
FastAPI, Django, Flask, Litestar, and Sanic starters with production start commands.
Rails, Sinatra, Grape, Hanami, and Roda starters with Bundler and Adios config.
Laravel, Symfony, CakePHP, CodeIgniter, Yii, and PHP 8.2 starters.
Gin, Chi, Echo, Fiber, and Beego starters with compiled production binaries.
ASP.NET Core, Blazor, ABP, FastEndpoints, Orchard Core, and .NET 8 starters.
Platform capabilities
Keep development, infrastructure, and operations connected instead of rebuilding the release path across separate tools.
Let the AI agent work inside your actual project—not a disposable sandbox. Review every file change, preview the result, and keep the work in Git.
Define how the app builds, starts, and reports health in adios.yaml. Each release stays connected to its source, logs, health status, and live route.
Run APIs, WebSockets, background workers, and long-lived services without operating servers, proxies, or certificates.
Add Postgres, pgvector, Redis, MongoDB, MySQL, or RabbitMQ and connect them to the application without placing credentials in source.
Run scheduled jobs, webhooks, approvals, and multi-step processes with visible status, logs, inputs, outputs, and errors.
Route traffic through the Adios edge network, attach custom domains, and keep TLS and the live release connected as versions change.
Workflow example
Define triggers, secret references, and ordered steps in YAML. Each run keeps its status, logs, inputs, outputs, and errors, so your team can see exactly what happened.
This example runs every weekday or from a webhook, then turns market data into a brief for an internal dashboard.
Trigger
Run on a weekday schedule or start from a webhook.
Process
Fetch price data and select the fields the next step needs.
Publish
Send the brief to an internal dashboard and keep every step attached to the run.
workflow_id: daily-market-brief
enabled: true
triggers:
- type: cron
cron: "0 13 * * 1-5"
- type: webhook
event: market.brief.requested
secrets:
MARKET_DATA_API_KEY: secret://MARKET_DATA_API_KEY
steps:
- step_id: fetch-prices
kind: http
command:
method: GET
url: https://api.example.com/quotes
headers:
Authorization: "Bearer secret://MARKET_DATA_API_KEY"
- step_id: select-close
kind: data-json
dependencies: [fetch-prices]
command:
from_step: fetch-prices
path: ".quotes"
- step_id: publish-brief
kind: http
dependencies: [select-close]
command:
method: POST
url: https://dashboard.example.com/api/market-briefsPlans start at $10 per month. Choose the compute, storage, bandwidth, and included AI usage that fit your apps. Final terms and availability are shown at checkout.
For a first app, small API, or personal workspace.
$10/mo
For active development across several apps.
$50/mo
For production projects that need more headroom.
$99/mo