“I’m starting a company.”
Turn a rough idea into a business plan and clear next steps with your AI team.
Build my business planTHE AI CLOUD PLATFORM FOR DEVELOPERS & FOUNDERS
Turn your idea into a working product. Build with AI, then run your apps, APIs, and databases on Adios.
Try Create or the Company Agent before signing up.
Illustrative project · Your idea sets the direction
START WHERE YOU ARE
For founders starting out and developers ready to ship.
Turn a rough idea into a business plan and clear next steps with your AI team.
Build my business planStart with a website. Describe what you want, see it take shape, then keep building in your workspace.
Create my first pageBring your repository. Deploy apps and APIs with managed databases, storage, and workflows in the same cloud.
Launch my appFROM YOUR EDITOR TO THE CLOUD
Keep building in Codex. Ask it to deploy, and Adios handles the build and hosting. A short path from your code to a live app.
1 export default function App() {
2 return (
3 <LaunchYourIdea />
4 );
5 }AI + CLOUD, BUILT TOGETHER
Work with AI in your code, preview changes, and deploy to the same platform. Your apps, data, and background jobs have a home from day one.
See the AI workspaceStart with your idea, a template, or existing code.
Work with AI. Check the result. Make it yours.
Publish from your workspace and connect your domain.
GET TO KNOW ADIOS
Choosing a new platform is a big decision. Start with something small and inspect the result for yourself.
Have a question? Talk to us ↗Inspect your source code, download plan documents, and review what goes live.
Explore how workspaces work →THE CLOUD BEHIND YOUR PRODUCT
Web apps, APIs, databases, and background jobs. Bring your code and run the services behind your product together on Adios.
Full-stack apps · WebSockets · Long-running processes
Connect your domain. Adios manages TLS certificates and routes traffic to your app.
Domains & TLSFollow build and runtime logs, check application health, and inspect your releases.
Logs & healthConnect apps and databases through private service addresses on your network.
Private networkingManage secrets separately from source and supply them to the builds and services that need them.
Secrets & configurationADIOS WORKFLOWS
Call APIs, run code, move data, and pause for a decision. Connect each action in YAML and inspect every run.
Read the workflow docsStart manually, from a webhook or event, or on a schedule.
httpHTTP methods, headers, and request bodies.
request-parserExtract fields from incoming requests and events.
data-jsonSelect values from payloads and earlier steps.
bashExecute shell commands with environment variables.
pythonProcess data and run your own scripts.
sqlRead or write to PostgreSQL and MySQL.
emailSMTP, SendGrid, Postmark, Mailgun, Brevo, Mailjet, and Mailchimp Transactional.
s3Read, write, inspect, or delete S3-compatible objects.
waitPause for a human decision before continuing.
agentInvoke an agent with a pinned configuration and workspace.
FROM IDEA TO YAML
Complete manifests you can copy and adapt. Configure the endpoints and secret references for your services.
workflow_id: webhook-delivery
title: Route a webhook
enabled: true
triggers:
- type: webhook
event: order.created
context:
destination_url: https://api.example.com/orders
steps:
- step_id: parse
kind: request-parser
command:
extract:
order: .payload.order
- step_id: order
kind: data-json
dependencies: [parse]
command:
from_step: parse
path: .order
- step_id: deliver
kind: http
dependencies: [order]
command:
method: POST
url: "{{ .context.destination_url }}"
headers:
X-API-Key: secret://API_TOKEN
body: "{{ .steps.order.output }}"
Setup Set your destination URL and API_TOKEN secret for the X-API-Key header. Send the sample payload with the order.created event.
Sample event payload{"order":{"id":"ord_1042","total":49,"currency":"USD"}}
Secrets where you need them. Bash and Python use a step-level env block. HTTP, SQL, email, and S3 use secret://NAME directly in command fields. See the syntax
YOUR NEXT CHAPTER STARTS HERE
Explore for free. Hosting plans from $10/month.
Hosting trial: 14 days. Card required. See plans and limits →