Keep deployment decisions beside the code
Teammates can review how the app builds and runs without opening a cloud console.
Keep the build, start, health, region, and resource contract in adios.yaml. Running adios up turns the current source into a version and promotes it when the deployment is healthy.
name: dashboard
region: de
replicas: 2
build_cmd: pnpm build
start_cmd: pnpm start
runtime:
name: node@24
port: 3000
health_path: /api/health
memory_mb: 1024Example outcome
Move an existing dashboard from a local folder to a live route.
Add the runtime commands and health path, run adios up, inspect build and runtime logs, then confirm the promoted version behind the generated route.
Teammates can review how the app builds and runs without opening a cloud console.
Source, build, replicas, health, and promotion stay connected.
Each version retains its build output, runtime logs, artifacts, and release state.
Why this matters
Build scripts, runtime settings, health checks, deploy logs, and release promotion often end up scattered across CI files and cloud consoles that are hard to reproduce or review.
What changes with Adios
Describe the runtime once, deploy the current source, and follow the same build, health-check, and promotion path from the CLI or workspace.
How it works
Add an adios.yaml manifest to your project.
Run adios up or deploy from the console.
Follow build logs, runtime logs, health checks, and release promotion from one place.
A real use case
Add the runtime commands and health path, run adios up, inspect build and runtime logs, then confirm the promoted version behind the generated route.
Manifest-based build and start commands
Runtime versions tied to source artifacts
Health checks and release promotion
Build and runtime logs from the CLI or dashboard
Source
Upload current files
Build
Create a versioned artifact
Health
Verify running replicas
Promote
Move the current route
Start here
Add one manifest, run adios up, and keep the full release path visible when you ship again.
Keep building
CLI & Local Development
Use the Adios CLI to deploy the current directory, read build and runtime logs, manage platform resources, and sync source both ways with a workspace.
Explore →Managed App Hosting
Use the build and start commands your framework already expects. Adios runs the app as a long-lived managed process with replica health, logs, release state, and public routing.
Explore →Observability & Logs
Build logs, runtime logs, source artifacts, versions, replica health, routes, and workflow runs stay connected in the same deployment path.
Explore →