From 5ad99f645022077290a4ff3342aa70add8766f34 Mon Sep 17 00:00:00 2001 From: Pavel Jbanov Date: Wed, 8 May 2024 17:23:05 -0400 Subject: [PATCH] Fixed template paths --- genkit-tools/cli/src/commands/init.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/genkit-tools/cli/src/commands/init.ts b/genkit-tools/cli/src/commands/init.ts index a06fa7aa2d..1866bcbcc7 100644 --- a/genkit-tools/cli/src/commands/init.ts +++ b/genkit-tools/cli/src/commands/init.ts @@ -144,10 +144,10 @@ const pluginToInfo: Record = { /** Platform to sample flow template paths. */ const sampleTemplatePaths: Record = { - firebase: '../../config/firebase.index.ts.template', - googlecloud: '../../config/googleCloud.index.ts.template', - nodejs: '../../config/googleCloud.index.ts.template', // This can deviate from GCP template in the future as needed. - nextjs: '../../config/nextjs.genkit.ts.template', + firebase: '../../../config/firebase.index.ts.template', + googlecloud: '../../../config/googleCloud.index.ts.template', + nodejs: '../../../config/googleCloud.index.ts.template', // This can deviate from GCP template in the future as needed. + nextjs: '../../../config/nextjs.genkit.ts.template', }; /** Supported runtimes for the init command. */