UNPKG

@re-shell/cli

Version:

Full-stack development platform uniting microservices and microfrontends. Build complete applications with .NET (ASP.NET Core Web API, Minimal API), Java (Spring Boot, Quarkus, Micronaut, Vert.x), Rust (Actix-Web, Warp, Rocket, Axum), Python (FastAPI, Dja

24 lines (23 loc) 661 B
import { ProgressSpinner } from '../utils/spinner'; interface CreateProjectOptions { team?: string; org?: string; description?: string; template?: string; framework?: string; packageManager?: string; type?: 'app' | 'package' | 'lib' | 'tool'; port?: string; route?: string; isProject?: boolean; spinner?: ProgressSpinner; } /** * Creates a new Re-Shell project or workspace * * @param name - Name of the project/workspace * @param options - Additional options for project creation * @version 0.2.5 */ export declare function createProject(name: string, options: CreateProjectOptions): Promise<void>; export {};