mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-17 12:56:05 +00:00
refactor console verbosity and internal env handling
This commit is contained in:
@@ -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,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user