Ravel, our microVMs orchestrator, is live on GitHub. Feel free to let a star.
Valyent is now available in alpha version!

A developers-first
cloud platform.

Valyent turns Docker images into fast-booting microVMs
and orchestrates them at scale.

Use Cases

Whether you are looking for a foundation to build your cloud product,
or just want to deploy your web applications,
Valyent might be a good fit for you!

Deploy
Web Applications

Deploy your web applications, from GitHub, the CLI, or with infrastructure-as-code.

AI Code Execution

Safely run and test AI-generated code in isolated environments with full security controls and resource management.

Development Environments

Create disposable development environments, to run code in a secure, isolated space.

CLI-based deployments

Start deploying from the comfort of your terminal.

Terminal

# Install Valyent's CLI tool.
$ curl -L https://cli.valyent.cloud | sh
# Authenticate the CLI.
$ valyent auth login
# Initialize Valyent in your project.
$ valyent init
# Deploy your application.
$ valyent deploy

GitHub-based deployments

Push a commit to trigger a new deployment.

Terminal

# Add files to commit.
$ git add .
# Create a new commit.
$ git commit -m "..."
# Push commit to your GitHub repository.
$ git push
Deploy your favorite
web framework.
AdonisJS LogoLaravel LogoFastAPI Logo
Remix LogoNestJS LogoNextJS Logo.NET LogoGo LogoAngular Logo

Infrastructure-as-Code

It fits right into your code with SDKs for your favorite programming languages.

// npm install valyent.ts
import { createClient } from "valyent.ts"

// Create a client with your API key
const client = new Client("<API_KEY>")

// Create a new fleet
const fleet = await client.fleets.create({
  name: '<FLEET_NAME>',
})
    
// Create a new machine in the fleet
await client.machines.create(fleet.id, {
  region: 'gra-1',
  config: {
    image: '<DOCKER_IMAGE>',
    guest: {/* ... */},
    workload: {/* ... */},
  },
})

An easy-to-use REST API

Our REST API provides programmatic access to all Valyent features.
Here are examples of endpoints:

Deploy it with Valyent

From code to cloud: simplify, scale, and soar.

Open-Source

Ravel, our microVMs orchestrator,
is made open-source with an Apache 2.0 license.

Let a Star

Community

Valyent's community is gathering on Discord, so feel free to come and chat with us!

Join The Community

Documentation

Check out the documentation, for more information on how to integrate Valyent in your projects.

Read The Documentation