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
2 changes: 1 addition & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@
},
{
"anchor": "OpenHands Cloud",
"href": "https://app.openhands.dev",
"href": "https://app.all-hands.dev",
"icon": "cloud"
}
]
Expand Down
4 changes: 2 additions & 2 deletions openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3931,12 +3931,12 @@
},
"servers": [
{
"url": "https://app.openhands.dev",
"url": "https://app.all-hands.dev",
"description": "Production server"
},
{
"url": "http://localhost:3000",
"description": "Local development server"
}
]
}
}
2 changes: 1 addition & 1 deletion openhands/usage/cloud/bitbucket-installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: This guide walks you through the process of installing OpenHands Cl

## Prerequisites

- Signed in to [OpenHands Cloud](https://app.openhands.dev) with [a Bitbucket account](/openhands/usage/cloud/openhands-cloud).
- Signed in to [OpenHands Cloud](https://app.all-hands.dev) with [a Bitbucket account](/openhands/usage/cloud/openhands-cloud).

## Adding Bitbucket Repository Access

Expand Down
14 changes: 7 additions & 7 deletions openhands/usage/cloud/cloud-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ For the available API endpoints, refer to the

To use the OpenHands Cloud API, you'll need to generate an API key:

1. Log in to your [OpenHands Cloud](https://app.openhands.dev) account.
2. Navigate to the [Settings > API Keys](https://app.openhands.dev/settings/api-keys) page.
1. Log in to your [OpenHands Cloud](https://app.all-hands.dev) account.
2. Navigate to the [Settings > API Keys](https://app.all-hands.dev/settings/api-keys) page.
3. Click `Create API Key`.
4. Give your key a descriptive name (Example: "Development" or "Production") and select `Create`.
5. Copy the generated API key and store it securely. It will only be shown once.
Expand All @@ -27,7 +27,7 @@ To start a new conversation with OpenHands to perform a task,
<Tabs>
<Tab title="cURL">
```bash
curl -X POST "https://app.openhands.dev/api/conversations" \
curl -X POST "https://app.all-hands.dev/api/conversations" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
Expand All @@ -41,7 +41,7 @@ To start a new conversation with OpenHands to perform a task,
import requests

api_key = "YOUR_API_KEY"
url = "https://app.openhands.dev/api/conversations"
url = "https://app.all-hands.dev/api/conversations"

headers = {
"Authorization": f"Bearer {api_key}",
Expand All @@ -56,14 +56,14 @@ To start a new conversation with OpenHands to perform a task,
response = requests.post(url, headers=headers, json=data)
conversation = response.json()

print(f"Conversation Link: https://app.openhands.dev/conversations/{conversation['conversation_id']}")
print(f"Conversation Link: https://app.all-hands.dev/conversations/{conversation['conversation_id']}")
print(f"Status: {conversation['status']}")
```
</Tab>
<Tab title="TypeScript/JavaScript (with fetch)">
```typescript
const apiKey = "YOUR_API_KEY";
const url = "https://app.openhands.dev/api/conversations";
const url = "https://app.all-hands.dev/api/conversations";

const headers = {
"Authorization": `Bearer ${apiKey}`,
Expand All @@ -85,7 +85,7 @@ To start a new conversation with OpenHands to perform a task,

const conversation = await response.json();

console.log(`Conversation Link: https://app.openhands.dev/conversations/${conversation.id}`);
console.log(`Conversation Link: https://app.all-hands.dev/conversations/${conversation.id}`);
console.log(`Status: ${conversation.status}`);

return conversation;
Expand Down
2 changes: 1 addition & 1 deletion openhands/usage/cloud/github-installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: This guide walks you through the process of installing OpenHands Cl

## Prerequisites

- Signed in to [OpenHands Cloud](https://app.openhands.dev) with [a GitHub account](/openhands/usage/cloud/openhands-cloud).
- Signed in to [OpenHands Cloud](https://app.all-hands.dev) with [a GitHub account](/openhands/usage/cloud/openhands-cloud).

## Adding GitHub Repository Access

Expand Down
2 changes: 1 addition & 1 deletion openhands/usage/cloud/gitlab-installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: This guide walks you through the process of installing OpenHands Cl

## Prerequisites

- Signed in to [OpenHands Cloud](https://app.openhands.dev) with [a GitLab account](/openhands/usage/cloud/openhands-cloud).
- Signed in to [OpenHands Cloud](https://app.all-hands.dev) with [a GitLab account](/openhands/usage/cloud/openhands-cloud).

## Adding GitLab Repository Access

Expand Down
2 changes: 1 addition & 1 deletion openhands/usage/cloud/openhands-cloud.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Getting started with OpenHands Cloud.
## Accessing OpenHands Cloud

OpenHands Cloud is the hosted cloud version of OpenHands. To get started with OpenHands Cloud,
visit [app.all-hands.dev](https://app.openhands.dev).
visit [app.all-hands.dev](https://app.all-hands.dev).

You'll be prompted to connect with your GitHub, GitLab or Bitbucket account:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ description: Complete guide for setting up Jira Data Center integration with Ope
- Go to **Administration** > **System** > **WebHooks**
- Click **Create a WebHook**
- **Name**: `OpenHands Cloud Integration`
- **URL**: `https://app.openhands.dev/integration/jira-dc/events`
- **URL**: `https://app.all-hands.dev/integration/jira-dc/events`
- Set a suitable webhook secret
- **Issue related events**: Select the following:
- Issue updated
Expand All @@ -59,7 +59,7 @@ description: Complete guide for setting up Jira Data Center integration with Ope
### Step 1: Log in to OpenHands Cloud

1. **Navigate and Authenticate**
- Go to [OpenHands Cloud](https://app.openhands.dev/)
- Go to [OpenHands Cloud](https://app.all-hands.dev/)
- Sign in with your Git provider (GitHub, GitLab, or BitBucket)
- **Important:** Make sure you're signing in with the same Git provider account that contains the repositories you want the OpenHands agent to work on.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ description: Complete guide for setting up Jira Cloud integration with OpenHands
2. **Configure Webhook**
- **Name**: `OpenHands Cloud Integration`
- **Status**: Enabled
- **URL**: `https://app.openhands.dev/integration/jira/events`
- **URL**: `https://app.all-hands.dev/integration/jira/events`
- **Issue related events**: Select the following:
- Issue updated
- Comment created
Expand All @@ -62,7 +62,7 @@ description: Complete guide for setting up Jira Cloud integration with OpenHands
### Step 1: Log in to OpenHands Cloud

1. **Navigate and Authenticate**
- Go to [OpenHands Cloud](https://app.openhands.dev/)
- Go to [OpenHands Cloud](https://app.all-hands.dev/)
- Sign in with your Git provider (GitHub, GitLab, or BitBucket)
- **Important:** Make sure you're signing in with the same Git provider account that contains the repositories you want the OpenHands agent to work on.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ description: Complete guide for setting up Linear integration with OpenHands Clo

2. **Configure Webhook**
- **Label**: `OpenHands Cloud Integration`
- **URL**: `https://app.openhands.dev/integration/linear/events`
- **URL**: `https://app.all-hands.dev/integration/linear/events`
- **Resource types**: Select:
- `Comment` - For comment events
- `Issue` - For issue updates (label changes)
Expand All @@ -63,7 +63,7 @@ description: Complete guide for setting up Linear integration with OpenHands Clo
### Step 1: Log in to OpenHands Cloud

1. **Navigate and Authenticate**
- Go to [OpenHands Cloud](https://app.openhands.dev/)
- Go to [OpenHands Cloud](https://app.all-hands.dev/)
- Sign in with your Git provider (GitHub, GitLab, or BitBucket)
- **Important:** Make sure you're signing in with the same Git provider account that contains the repositories you want the OpenHands agent to work on.

Expand Down
2 changes: 1 addition & 1 deletion openhands/usage/cloud/slack-installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ validate critical information independently.
**Make sure your Slack workspace admin/owner has installed OpenHands Slack App first.**

Every user in the Slack workspace (including admins/owners) must link their OpenHands Cloud account to the OpenHands Slack App. To do this:
1. Visit the [Settings > Integrations](https://app.openhands.dev/settings/integrations) page in OpenHands Cloud.
1. Visit the [Settings > Integrations](https://app.all-hands.dev/settings/integrations) page in OpenHands Cloud.
2. Click `Install OpenHands Slack App`.
3. In the top right corner, select the workspace to install the OpenHands Slack app.
4. Review permissions and click allow.
Expand Down
2 changes: 1 addition & 1 deletion openhands/usage/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ icon: rocket
<Tab title="OpenHands Cloud">
The easiest way to get started with OpenHands is on OpenHands Cloud, which comes with $20 in free credits for new users.

To get started with OpenHands Cloud, visit [app.all-hands.dev](https://app.openhands.dev).
To get started with OpenHands Cloud, visit [app.all-hands.dev](https://app.all-hands.dev).

For more information see [getting started with OpenHands Cloud.](/openhands/usage/cloud/openhands-cloud)
</Tab>
Expand Down
2 changes: 1 addition & 1 deletion openhands/usage/run-openhands/local-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ OpenHands requires an API key to access most language models. Here's how to get

<Accordion title="OpenHands (Recommended)">

1. [Log in to OpenHands Cloud](https://app.openhands.dev).
1. [Log in to OpenHands Cloud](https://app.all-hands.dev).
2. Go to the Settings page and navigate to the `API Keys` tab.
3. Copy your `LLM API Key`.

Expand Down