Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 10 additions & 15 deletions src/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -1168,22 +1168,9 @@
"langsmith/deployments",
"langsmith/local-server",
"langsmith/app-development",
"langsmith/deployment-quickstart",
{
"group": "Deploy to cloud",
"pages": [
"langsmith/deployment-quickstart",
"langsmith/deploy-to-cloud"
]
},
{
"group": "Deploy to self-hosted or hybrid",
"pages": [
"langsmith/deploy-with-control-plane",
"langsmith/deploy-standalone-server"
]
},
{
"group": "Configure for deployment",
"group": "Configure app for deployment",
"pages": [
"langsmith/application-structure",
{
Expand Down Expand Up @@ -1211,6 +1198,14 @@
"langsmith/cicd-pipeline-example"
]
},
{
"group": "Deployment guides",
"pages": [
"langsmith/deploy-to-cloud",
"langsmith/deploy-with-control-plane",
"langsmith/deploy-standalone-server"
]
},
{
"group": "App development",
"pages": [
Expand Down
2 changes: 1 addition & 1 deletion src/langsmith/deploy-to-cloud.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: LangSmith on Cloud
sidebarTitle: Setup guide
sidebarTitle: Cloud
icon: "cloud"
iconType: "solid"
---
Expand Down
26 changes: 19 additions & 7 deletions src/langsmith/deployments.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,25 @@ This section covers how to package, build, and deploy your _agents_ and applicat

A typical deployment workflow consists of the following steps:

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

## What you'll learn

Expand Down
2 changes: 1 addition & 1 deletion src/langsmith/local-server.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Run a LangGraph app locally
sidebarTitle: Quickstart
sidebarTitle: Test locally
---

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