Skip to content
Relunar

Documentation

Configuration

Repository and global settings for Relunar.

Repository config

Create .relunar.yml in the target repository:

version: 1

setup:
  - bun install

baseline:
  - bun run typecheck
  - bun test

report:
  maxLogLines: 200

Relunar clones the linked repository into a Daytona sandbox, reads this file, runs setup, then runs baseline.

Global config

Non-secret settings live in:

~/.config/relunar/config.json

Repo links are stored per working directory path.

Credentials

GitHub token resolution order:

  1. RELUNAR_GITHUB_TOKEN
  2. gh auth token
  3. macOS keychain value saved by relunar auth github --token <token>

Daytona API key resolution order:

  1. RELUNAR_DAYTONA_API_KEY
  2. macOS keychain value saved by relunar auth daytona --api-key <key>

Secrets are never stored in the repository.