{% extends "base.html.jinja" %} {% block content %}

Push a manifest.
Get production infrastructure.

Forage is the managed platform for Forest. Define your infrastructure in a forest.cue file, push it, and we handle the rest.

Get started free View pricing
// forest.cue
project: {
  name:         "my-api"
  organisation: "acme"
}

dependencies: {
  "forage/service":  version: "1.0"
  "forage/postgres": version: "1.0"
}

forage: service: {
  config: {
    name:  "my-api"
    image: "my-api:latest"
    ports: [{ container: 8080, protocol: "http" }]
  }
}
$ forest release create --env prod

Everything you need to ship

Component Registry

Publish and discover reusable forest components. Share deployment patterns, service templates, and infrastructure modules across your organisation.

Managed Deployments

Zero-config container runtime. Push your manifest and get automatic scaling, health checks, rollbacks, and multi-environment support.

Container Deployments

Push your containers and let Forage handle the runtime. No Kubernetes knowledge needed. Pay only for what you use.

Type-Safe Infrastructure

CUE gives you typed, validated infrastructure definitions. Catch configuration errors before they reach production.

Team Management

Organisations, role-based access, and audit logs. Manage who can deploy what, where, and when.

Pay As You Go

Transparent, usage-based pricing. Start free, scale smoothly. No surprise bills, no hidden fees.

Ready to simplify your infrastructure?

Join the waitlist and be first to try Forage.

Get started free
{% endblock %}