@mariozechner/create-app
Version:
CLI for creating deployable web applications with Docker, Caddy, and modern tooling
14 lines (12 loc) • 315 B
text/typescript
export interface TemplateConfig {
name: string; // Display name for CLI
description: string;
inherits?: string[]; // Parent template names
prompts: Prompt[];
}
export interface Prompt {
name: string;
type: "text" | "number" | "bool";
message: string;
initial?: string | number | boolean;
}