Skip to content

Commit 0e5803f

Browse files
Update API Only preset to use Sqlite and enable auth
1 parent 69ef61e commit 0e5803f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/web/src/lib/constant.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -528,17 +528,17 @@ export const PRESET_TEMPLATES = [
528528
{
529529
id: "api-only",
530530
name: "API Only",
531-
description: "Backend API with Hono and PostgreSQL",
531+
description: "Backend API with Hono and Sqlite",
532532
stack: {
533533
projectName: "my-better-t-app",
534534
webFrontend: ["none"],
535535
nativeFrontend: ["none"],
536536
runtime: "bun",
537537
backend: "hono",
538-
database: "postgres",
538+
database: "sqlite",
539539
orm: "drizzle",
540540
dbSetup: "none",
541-
auth: "false",
541+
auth: "true",
542542
packageManager: "bun",
543543
addons: ["turborepo"],
544544
examples: [],

bun.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"apps/cli": {
1616
"name": "create-better-t-stack",
17-
"version": "2.19.1",
17+
"version": "2.20.0",
1818
"bin": {
1919
"create-better-t-stack": "dist/index.js",
2020
},

0 commit comments

Comments
 (0)