//! ravel serve — start the development server.
//!//! Runs `cargo run` which builds and starts the project binary.
useanyhow::Result;usestd::process::Command;pubfnhandle()->Result<()>{println!("🚀 Starting server...");let status =Command::new("cargo").arg("run").status()?;if!status.success(){// ctrl-c gives non-zero; that's fine
ifletSome(code)= status.code()&& code !=130{anyhow::bail!("Server exited with code {code}");}}Ok(())}