docs(cli): link deploy quickstart

Co-authored-by: open-swe[bot] <open-swe@users.noreply.github.com>
This commit is contained in:
Parker J. Rule
2026-09-08 15:21:10 +00:00
co-authored by open-swe[bot] <open-swe@users.noreply.github.com>
parent cf60f1128a
commit 52f46c97bd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1607,7 +1607,7 @@ def _deploy_cmd(
message = (
"We couldn't find a langgraph.json file. Run `langgraph deploy` from "
"the root of a LangSmith Deployment project. To get started, visit "
"https://docs.langchain.com/langsmith/application-structure."
"https://docs.langchain.com/langsmith/deployment-quickstart."
)
if json_output:
em.error(message)
+1 -1
View File
@@ -329,7 +329,7 @@ def test_deploy_missing_config_shows_actionable_error(tmp_path, monkeypatch) ->
assert result.exit_code == 1
assert "We couldn't find a langgraph.json file." in result.output
assert "Run `langgraph deploy` from the root" in result.output
assert "https://docs.langchain.com/langsmith/application-structure" in result.output
assert "https://docs.langchain.com/langsmith/deployment-quickstart" in result.output
assert "Traceback" not in result.output