You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/cli/src/helpers/core/command-handlers.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,7 @@ export async function createProjectHandler(
103
103
frontend: [],
104
104
addons: [],
105
105
examples: [],
106
-
auth: false,
106
+
auth: "none",
107
107
git: false,
108
108
packageManager: "npm",
109
109
install: false,
@@ -154,11 +154,11 @@ export async function createProjectHandler(
154
154
155
155
if(config.backend==="convex"){
156
156
log.info(
157
-
"Due to '--backend convex' flag, the following options have been automatically set: auth=false, database=none, orm=none, api=none, runtime=none, dbSetup=none, examples=todo",
157
+
`Due to '--backend convex' flag, the following options have been automatically set: database=none, orm=none, api=none, runtime=none, dbSetup=none, examples=todo`,
158
158
);
159
159
}elseif(config.backend==="none"){
160
160
log.info(
161
-
"Due to '--backend none', the following options have been automatically set: --auth=false, --database=none, --orm=none, --api=none, --runtime=none, --db-setup=none, --examples=none",
161
+
"Due to '--backend none', the following options have been automatically set: --auth none, --database=none, --orm=none, --api=none, --runtime=none, --db-setup=none, --examples=none",
0 commit comments