cargo-reef 0.0.0

CLI scaffolder for Reef apps. `cargo reef new my-app` creates a fully-wired Rust full-stack app (Dioxus + Turso + LiteFS + Tailscale + Fly).
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `cargo-reef` — CLI scaffolder for Reef apps.
//!
//! This binary becomes the `cargo reef` subcommand once installed.
//! Today it's a placeholder; the scaffolder is in early development.

fn main() {
    let args: Vec<String> = std::env::args().collect();
    eprintln!("cargo-reef v0.0.0 — name reservation; scaffolder in progress.");
    eprintln!("See https://reef.rs for status.");
    eprintln!();
    eprintln!("invoked as: {}", args.join(" "));
    std::process::exit(0);
}