minifly 0.1.1

Local Fly.io development simulator with incredible developer experience
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Development mode command

use anyhow::Result;
use colored::*;

/// Handle the dev command
pub async fn handle(path: &str, port: u16) -> Result<()> {
    println!("{}", "🔥 Starting development mode...".blue().bold());
    println!("  • Project path: {}", path.cyan());
    println!("  • API port: {}", port.to_string().cyan());
    
    println!();
    println!("{}", "💡 Development mode in standalone CLI:".yellow());
    println!("   • Install the full platform for complete dev mode");
    println!("   • Features include hot reloading, log streaming, and auto-deployment");
    
    Ok(())
}