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: packages/core/src/utils/local-server-running.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ export async function isLocalServerRunning(): Promise<Boolean> {
9
9
cache: 'no-cache',// Prevents caching of the request
10
10
});
11
11
12
-
constportUseError=`\nPort 9000 is already in use. \nTerminate the process running on it. \nRun npx baseai@latest dev in an new terminal to start the dev server.\n`;
12
+
constportUseError=`\nPort 9000 is already in use. \nTerminate the process running on it. \nRun "npx baseai@latest dev" in an new terminal to start the dev server.\n`;
13
13
14
14
if(!response.ok){
15
15
console.error(portUseError);
@@ -29,7 +29,7 @@ export async function isLocalServerRunning(): Promise<Boolean> {
29
29
}catch(error){
30
30
// Port is not in use and BaseAI dev server is not running
31
31
console.error(
32
-
`\nBaseAI dev server is not running. \nPlease run npx baseai@latest dev in a new teriminal to start dev server.\n`,
32
+
`\nBaseAI dev server is not running. \nPlease run "npx baseai@latest dev" in a new teriminal to start dev server.\n`,
0 commit comments