Devver Docs

Quick Start

Go from zero to your first deployment in under 5 minutes.

1. Install the CLI

npm install -g @devver/cli

2. Log in

devver auth login

This opens your browser for authentication. Once complete, your session is stored locally.

3. Initialise your project config

Inside your project directory:

devver config init

Devver auto-detects your framework and creates a .devver.yaml file.

# Example generated .devver.yaml
services:
  web:
    build: .
    port: 3000

Commit this file to your repository:

git add .devver.yaml
git commit -m "chore: add devver config"
devver project link https://github.com/your-org/your-repo --name my-project

5. Deploy

devver deploy

The CLI will:

  1. Validate your config and git state
  2. Confirm the deployment with you
  3. Push your branch and create a deployment on Devver

What's next?

On this page