Buddy CLI
Buddy is the official command-line interface for the Stacks framework. It provides a comprehensive set of commands to help you develop, build, test, and deploy your Stacks applications with ease.
Overview
The Buddy CLI is designed with developer experience in mind, following the "convention over configuration" philosophy. It provides sensible defaults while remaining highly configurable for advanced use cases.
Installation
Buddy comes pre-installed with every Stacks project. When you create a new Stacks project, Buddy is automatically available:
# Create a new Stacks project
bunx stacks new my-project
# Navigate to your project
cd my-project
# Buddy is now available
buddy --help
Global Installation
You can also install Buddy globally for system-wide access:
bun install -g @stacksjs/buddy
Configuration
Buddy automatically reads configuration from your project's config files. Most commands work out of the box without any additional setup.
Project Configuration
Buddy respects your project's configuration files located in the config/ directory:
config/app.ts- Application settingsconfig/database.ts- Database configurationconfig/cloud.ts- Cloud deployment settingsconfig/dns.ts- DNS configuration
CLI Aliases
Buddy can be invoked using any of the following aliases:
buddy fresh # Full command name
bud fresh # Short alias
stx fresh # Alternative alias
Command Structure
Buddy commands follow a consistent structure:
buddy <command> [subcommand] [arguments] [options]
Common Options
Most commands support these common options:
| Option | Description |
|---|---|
--help | Display help information for the command |
--verbose | Enable verbose output for debugging |
-p, --project [project] | Target a specific project |
Getting Help
To see all available commands:
buddy --help
To get help for a specific command:
buddy <command> --help
Quick Reference
Here are some of the most commonly used commands:
# Development
buddy dev # Start development server
buddy dev:api # Start API development server
buddy dev:docs # Start documentation server
# Building
buddy build # Build for production
buddy build:components # Build component library
# Database
buddy migrate # Run database migrations
buddy seed # Seed database with data
# Testing
buddy test # Run test suite
buddy lint # Run linter
# Deployment
buddy deploy # Deploy to cloud
buddy cloud:remove # Remove cloud infrastructure
Troubleshooting
Command Not Found
If you encounter a "command not found" error:
- Ensure you're in a Stacks project directory
- Run
buddy installto install dependencies - Check that Bun is properly installed
Permission Issues
Some commands may require elevated permissions:
sudo buddy upgrade:binary # Upgrade the Buddy binary
Verbose Mode
Enable verbose mode to see detailed output for debugging:
buddy <command> --verbose
Learn More
Explore the individual command documentation for detailed information:
- Development Server - Start dev servers
- Build Commands - Build for production
- Database Commands - Manage database
- Testing Commands - Run tests
- Deployment - Deploy applications