Update API Only preset to use Sqlite and enable auth

This commit is contained in:
Aman Varshney
2025-06-18 21:55:14 +05:30
parent 69ef61e577
commit 0e5803fd91
2 changed files with 4 additions and 4 deletions

View File

@@ -528,17 +528,17 @@ export const PRESET_TEMPLATES = [
{
id: "api-only",
name: "API Only",
description: "Backend API with Hono and PostgreSQL",
description: "Backend API with Hono and Sqlite",
stack: {
projectName: "my-better-t-app",
webFrontend: ["none"],
nativeFrontend: ["none"],
runtime: "bun",
backend: "hono",
database: "postgres",
database: "sqlite",
orm: "drizzle",
dbSetup: "none",
auth: "false",
auth: "true",
packageManager: "bun",
addons: ["turborepo"],
examples: [],