reef-cli 0.1.0

CLI for the Reef framework. Scaffolds new apps, manages migrations, deploys NixOS images. See https://reef.rs.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Reef CLI — placeholder.
//!
//! Full implementation moves here from `cargo-reef` in an upcoming
//! release. For now this binary just prints a pointer to the docs.

fn main() {
    println!(
        "reef-cli {} — pre-release placeholder.\n\
         \n\
         The Reef framework is in active development.\n\
         See https://reef.rs and https://github.com/reef-rs/reef for status.\n\
         \n\
         For the current CLI (subcommand form), use:\n\
         \x20   cargo install cargo-reef\n\
         \x20   cargo reef new my-app\n",
        env!("CARGO_PKG_VERSION"),
    );
}