add nextjs frontend and backend

This commit is contained in:
Aman Varshney
2025-04-12 21:19:06 +05:30
parent cff1a8202b
commit 33158a2ddf
48 changed files with 1213 additions and 198 deletions

View File

@@ -52,7 +52,8 @@ export async function gatherConfig(
},
frontend: () => getFrontendChoice(flags.frontend),
backend: () => getBackendFrameworkChoice(flags.backend),
runtime: () => getRuntimeChoice(flags.runtime),
runtime: ({ results }) =>
getRuntimeChoice(flags.runtime, results.backend),
database: () => getDatabaseChoice(flags.database),
orm: ({ results }) =>
getORMChoice(flags.orm, results.database !== "none", results.database),