Documentation

Everything you need to know about using RepoRun effectively

Getting Started

Installation

npm install -g reporun

RepoRun is a command-line tool that helps you automatically diagnose and fix repository setup issues.

Commands

reporun debug

Analyzes your project and identifies potential setup issues.

Basic Command
reporun fix

Automatically fixes detected issues in your project.

Core Feature
reporun config

Configure RepoRun settings and preferences.

Configuration
reporun help

Display help information and available commands.

Utility

Configuration

Environment Variables

REPORUN_API_KEYYour API key for authentication
REPORUN_LOG_LEVELLogging level (debug, info, warn, error)

Examples

Python Project Setup

$ cd my-python-project
$ reporun debug
🔍 Analyzing Python project...
⚠️ Found 2 issues:
- Missing Python 3.8+
- Outdated pip version
$ reporun fix
✅ Fixed: Updated pip to latest version
✅ Fixed: Python version check passed

Troubleshooting

Common Issues

Permission Denied

If you get permission errors, try running with sudo or check your file permissions.

Network Issues

Ensure you have a stable internet connection for downloading dependencies.