File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff 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` ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { addPackageDependency } from "../../utils/add-package-deps";
66export 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
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments