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: src/mcp/prompts/core/deploy.ts
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@ import { prompt } from "../../prompt";
3
3
exportconstdeploy=prompt(
4
4
{
5
5
name: "deploy",
6
-
omitPrefix: true,
7
6
description: "Use this command to deploy resources to Firebase.",
8
7
arguments: [
9
8
{
@@ -43,7 +42,7 @@ ${prompt || "<the user didn't supply specific instructions>"}
43
42
Follow the steps below taking note of any user instructions provided above.
44
43
45
44
1. If there is no active user, prompt the user to run \`firebase login\` in an interactive terminal before continuing.
46
-
2. Analyze the source code in the current working directory to determine if this is a web app. If it isn't, end this process and tell the user "The /deploy command only works with web apps."
45
+
2. Analyze the source code in the current working directory to determine if this is a web app. If it isn't, end this process and tell the user "The /firebase:deploy command only works with web apps."
47
46
3. Analyze the source code in the current working directory to determine if the app requires a server for Server-Side Rendering (SSR). This will determine whether or not to use Firebase App Hosting. Here are instructions to determine if the app needs a server:
48
47
Objective: Analyze the provided codebase files to determine if the web application requires a backend for Server-Side Rendering (SSR). Your final output must be a clear "Yes" or "No" followed by a brief justification.
0 commit comments