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", id: "api-only",
name: "API Only", name: "API Only",
description: "Backend API with Hono and PostgreSQL", description: "Backend API with Hono and Sqlite",
stack: { stack: {
projectName: "my-better-t-app", projectName: "my-better-t-app",
webFrontend: ["none"], webFrontend: ["none"],
nativeFrontend: ["none"], nativeFrontend: ["none"],
runtime: "bun", runtime: "bun",
backend: "hono", backend: "hono",
database: "postgres", database: "sqlite",
orm: "drizzle", orm: "drizzle",
dbSetup: "none", dbSetup: "none",
auth: "false", auth: "true",
packageManager: "bun", packageManager: "bun",
addons: ["turborepo"], addons: ["turborepo"],
examples: [], examples: [],

View File

@@ -14,7 +14,7 @@
}, },
"apps/cli": { "apps/cli": {
"name": "create-better-t-stack", "name": "create-better-t-stack",
"version": "2.19.1", "version": "2.20.0",
"bin": { "bin": {
"create-better-t-stack": "dist/index.js", "create-better-t-stack": "dist/index.js",
}, },