create-quickstart-app
Version:
CLI tool to generate Next.js projects with various configurations
13 lines (12 loc) • 417 B
TypeScript
export interface GlobalOptions {
projectName: string;
language: "TypeScript" | "JavaScript";
useClerk: boolean;
orm: "None" | "Prisma" | "Drizzle" | "Mongoose";
database?: "None" | "PostgreSQL" | "SQLite" | "MySQL" | "MongoDB";
initGit: boolean;
installDeps: boolean;
useSrcDir: boolean;
useTemplates: boolean;
templates?: "ecommerce" | "blog" | "portfolio" | "landingPage";
}