refactor console verbosity and internal env handling

This commit is contained in:
dswbx
2025-03-04 11:18:14 +01:00
parent 36fba4588f
commit ab73b02138
13 changed files with 256 additions and 142 deletions

View File

@@ -8,7 +8,15 @@ export type TemplateSetupCtx = {
name: string;
};
export type Integration = "node" | "bun" | "cloudflare" | "nextjs" | "remix" | "astro" | "custom";
export type Integration =
| "node"
| "bun"
| "cloudflare"
| "nextjs"
| "remix"
| "astro"
| "aws"
| "custom";
type TemplateScripts = "install" | "dev" | "build" | "start";
export type Template = {
@@ -61,4 +69,12 @@ export const templates: Template[] = [
path: "gh:bknd-io/bknd/examples/astro",
ref: true,
},
{
key: "aws",
title: "AWS Lambda Basic",
integration: "aws",
description: "A basic bknd AWS Lambda starter",
path: "gh:bknd-io/bknd/examples/aws-lambda",
ref: true,
},
];