Skip to content
Draft
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This folder helps you install **Condor** (a Telegram bot for trading) and, if yo
Open Terminal, go to an **empty folder** where you are happy to create files (for example your home folder, or `cd Desktop` first), then paste:

```bash
curl -fsSL https://raw.githubusercontent.com/hummingbot/deploy/main/setup.sh | bash
curl -fsSL https://raw.githubusercontent.com/hummingbot/deploy/main/install-condor.sh | bash
```

The installer walks you through setup—for example your **Telegram** bot token and your **Telegram user id**—and can also install **Hummingbot API** on the **same machine** if you choose that when it asks. When it finishes, continue to **After installation** below.
Expand All @@ -30,7 +30,7 @@ The installer walks you through setup—for example your **Telegram** bot token
Use this when you are deploying **Hummingbot API** on its own machine (for example a **VPS** or another **remote server**), or any time you **only** need the API and database stack and **not** Condor. **Docker** must be installed and running on that server before you run the command:

```bash
curl -fsSL https://raw.githubusercontent.com/hummingbot/deploy/main/setup.sh | bash -s -- --hummingbot-api
curl -fsSL https://raw.githubusercontent.com/hummingbot/deploy/main/install-condor.sh | bash -s -- --hummingbot-api
```

---
Expand All @@ -42,7 +42,7 @@ curl -fsSL https://raw.githubusercontent.com/hummingbot/deploy/main/setup.sh | b
**Manual — from the computer:** if you prefer to run the installer again yourself, go back to the **same folder** where you first installed (where the `condor` folder lives), open Terminal there, then paste:

```bash
curl -fsSL https://raw.githubusercontent.com/hummingbot/deploy/main/setup.sh | bash -s -- --upgrade
curl -fsSL https://raw.githubusercontent.com/hummingbot/deploy/main/install-condor.sh | bash -s -- --upgrade
```

---
Expand Down Expand Up @@ -104,9 +104,9 @@ cd hummingbot-api && make setup && docker compose pull && make deploy
Use the same commands, but start with `bash` instead of `curl`:

```bash
bash setup.sh
bash setup.sh --hummingbot-api
bash setup.sh --upgrade
bash install-condor.sh
bash install-condor.sh --hummingbot-api
bash install-condor.sh --upgrade
```

---
Expand Down
Loading