Quick Start
Go from zero to your first deployment in under 5 minutes.
1. Install the CLI
npm install -g @devver/cli2. Log in
devver auth loginThis opens your browser for authentication. Once complete, your session is stored locally.
3. Initialise your project config
Inside your project directory:
devver config initDevver auto-detects your framework and creates a .devver.yaml file.
# Example generated .devver.yaml
services:
web:
build: .
port: 3000Commit this file to your repository:
git add .devver.yaml
git commit -m "chore: add devver config"4. Link a repository
devver project link https://github.com/your-org/your-repo --name my-project5. Deploy
devver deployThe CLI will:
- Validate your config and git state
- Confirm the deployment with you
- Push your branch and create a deployment on Devver