Getting Started
Jump into Ωνα with a few easy steps. Install our tools, configure your environment, and deploy your first application.
Bash
curl -s https://api.omnadev.com/cli | sh
API Reference
Ωνα provides a powerful REST API for managing deployments, applications, and infrastructure as code (IaC).
Create Deployment
POST /api/v1/deployments
JSON Example
{ "env": "prod", "region": "us-east", "config": { "replicas": 3, "autoscale": true } }
Command Line
Ωνα’s CLI allows you to interact with your infrastructure directly from the terminal.
Command Example
ωνα apply -f ./my-infrastructure.yaml
Deployment
Deploy applications across any cloud provider using Ωνα’s cloud-agnostic deployment engine.

Examples
Deployment YAML
YAML Example
resources: - name: my-app type: container image: ghcr.io/omnadev/app environments: - name: dev replicas: 2 autoscale: false