Skip to content

Commit 1d6f700

Browse files
authored
Adjust deployment guide position + configuration group (#1185)
Moved the positioning of the deployment guides into one group and adjusted ordering. Added "Configuration" as a step in the typical deployment workflow on the Deployments Overview page to better align with the nav. Refer to this comment: #1106 (comment) Fixes DOC-408 ## Preview https://langchain-5e9cc07a-preview-overvi-1761758674-38251af.mintlify.app/langsmith/deployments
1 parent 5904885 commit 1d6f700

File tree

4 files changed

+31
-24
lines changed

4 files changed

+31
-24
lines changed

src/docs.json

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1168,22 +1168,9 @@
11681168
"langsmith/deployments",
11691169
"langsmith/local-server",
11701170
"langsmith/app-development",
1171+
"langsmith/deployment-quickstart",
11711172
{
1172-
"group": "Deploy to cloud",
1173-
"pages": [
1174-
"langsmith/deployment-quickstart",
1175-
"langsmith/deploy-to-cloud"
1176-
]
1177-
},
1178-
{
1179-
"group": "Deploy to self-hosted or hybrid",
1180-
"pages": [
1181-
"langsmith/deploy-with-control-plane",
1182-
"langsmith/deploy-standalone-server"
1183-
]
1184-
},
1185-
{
1186-
"group": "Configure for deployment",
1173+
"group": "Configure app for deployment",
11871174
"pages": [
11881175
"langsmith/application-structure",
11891176
{
@@ -1211,6 +1198,14 @@
12111198
"langsmith/cicd-pipeline-example"
12121199
]
12131200
},
1201+
{
1202+
"group": "Deployment guides",
1203+
"pages": [
1204+
"langsmith/deploy-to-cloud",
1205+
"langsmith/deploy-with-control-plane",
1206+
"langsmith/deploy-standalone-server"
1207+
]
1208+
},
12141209
{
12151210
"group": "App development",
12161211
"pages": [

src/langsmith/deploy-to-cloud.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: LangSmith on Cloud
3-
sidebarTitle: Setup guide
3+
sidebarTitle: Cloud
44
icon: "cloud"
55
iconType: "solid"
66
---

src/langsmith/deployments.mdx

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,25 @@ This section covers how to package, build, and deploy your _agents_ and applicat
1212

1313
A typical deployment workflow consists of the following steps:
1414

15-
1. **[Test locally](/langsmith/local-server)**: Run your application on a local server.
16-
2. **[Choose hosting](/langsmith/hosting)**: (Required for deployment) Select Cloud, Hybrid, or Self-hosted.
17-
3. **Deploy your app**:
18-
- [**Cloud**](/langsmith/deploy-to-cloud): Push code from a git repository
19-
- [**Hybrid or Self-hosted with control plane**](/langsmith/deploy-with-control-plane): Build and push Docker images, deploy via UI
20-
- [**Standalone servers**](/langsmith/deploy-standalone-server): Deploy directly without control plane
21-
4. **[Monitor & manage](/langsmith/observability)**: Track traces, alerts, and dashboards.
15+
<Steps>
16+
<Step title={<a href="/langsmith/local-server">Test locally</a>}>
17+
Run your application on a local server.
18+
</Step>
19+
<Step title={<a href="/langsmith/application-structure">Configure app for deployment</a>}>
20+
Set up dependencies, project structure, and environment configuration.
21+
</Step>
22+
<Step title={<a href="/langsmith/hosting">Choose hosting</a>}>
23+
(Required for deployment) Select Cloud, Hybrid, or Self-hosted.
24+
</Step>
25+
<Step title="Deploy your app">
26+
- [**Cloud**](/langsmith/deploy-to-cloud): Push code from a git repository
27+
- [**Hybrid or Self-hosted with control plane**](/langsmith/deploy-with-control-plane): Build and push Docker images, deploy via UI
28+
- [**Standalone servers**](/langsmith/deploy-standalone-server): Deploy directly without control plane
29+
</Step>
30+
<Step title={<a href="/langsmith/observability">Monitor & manage</a>}>
31+
Track traces, alerts, and dashboards.
32+
</Step>
33+
</Steps>
2234

2335
## What you'll learn
2436

src/langsmith/local-server.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Run a LangGraph app locally
3-
sidebarTitle: Quickstart
3+
sidebarTitle: Test locally
44
---
55

66
This quickstart shows you how to set up a LangGraph application locally for testing and development.

0 commit comments

Comments
 (0)