Skip to content

Commit a8fd327

Browse files
ok
1 parent cd4bc41 commit a8fd327

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

apps/cli/src/helpers/core/post-installation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export async function displayPostInstallInstructions(
165165
output += `${pc.cyan("•")} Backend API: http://localhost:3000\n`;
166166

167167
if (api === "orpc") {
168-
if (backend === "next") {
168+
if (backend === "self") {
169169
output += `${pc.cyan("•")} OpenAPI (Scalar UI): http://localhost:3000/rpc/api\n`;
170170
} else {
171171
output += `${pc.cyan("•")} OpenAPI (Scalar UI): http://localhost:3000/api\n`;

apps/cli/src/helpers/core/runtime-setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { addPackageDependency } from "../../utils/add-package-deps";
66
export async function setupRuntime(config: ProjectConfig) {
77
const { runtime, backend, projectDir } = config;
88

9-
if (backend === "convex" || backend === "next" || runtime === "none") {
9+
if (backend === "convex" || backend === "self" || runtime === "none") {
1010
return;
1111
}
1212

apps/cli/src/validation.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const CORE_STACK_FLAGS = new Set([
2121
"examples",
2222
"auth",
2323
"dbSetup",
24+
"payments",
2425
"api",
2526
"webDeploy",
2627
"serverDeploy",
@@ -39,7 +40,7 @@ function validateYesFlagCombination(
3940
if (coreStackFlagsProvided.length > 0) {
4041
exitWithError(
4142
`Cannot combine --yes with core stack configuration flags: ${coreStackFlagsProvided.map((f) => `--${f}`).join(", ")}. ` +
42-
"The --yes flag uses default configuration. Remove these flags or use --yes without them.",
43+
"The --yes flag uses default configuration. Remove these flags or use --yes without them.",
4344
);
4445
}
4546
}

0 commit comments

Comments
 (0)