aui-next-generator 0.2.0

CLI tool to generate Next.js projects with Tailwind CSS, TypeScript, ESLint, and optional React Query integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::Result;
use clap::Parser;

use aui_next_generator::{Cli, get_project_config, generate_project, print_success_message};

fn main() -> Result<()> {
    let args = Cli::parse();
    let config = get_project_config(args)?;
    
    generate_project(&config)?;
    print_success_message(&config);

    Ok(())
}