Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 5fddc54

Browse files
committed
Merge branch 'main' of github.com:letsdiscodev/docs.letsdisco.dev
2 parents 675bf89 + 70d225e commit 5fddc54

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

docs/exhaustive-documentation/ports.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ All ports are exposed in this private network. For example, we could have an int
7272

7373
`web` could also expose other ports to be made available internally without exposing them to the internet. Only the port of `web` that is defined in `port` is exposed to the internet (defaulting to `8000` when none is specified).
7474

75-
## Publishing Ports Extenally
75+
## Publishing Ports Externally
7676

7777
In the case where you would like to expose a port externally, bypassing the reverse proxy, you can it like so:
7878

docs/get-started/install-the-cli.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ sidebar_position: 1
66

77
### Easy install
88

9+
The CLI is meant to be installed on your own, local development machine. You don't need to install it on any of your servers.
10+
911
The easiest way to set up the CLI under Linux and macOS is to run:
1012

1113
```bash
1214
curl https://cli-assets.letsdisco.dev/install.sh | sh
1315
```
1416

15-
The installation script above requires sudo.
17+
The installation script above requires sudo to create symbolic links under `/usr/local`.
1618

1719
---
1820

docs/get-started/set-up-your-server.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,20 @@ You will also need a dedicated domain name for the server itself (in addition to
1212

1313
## Step One: disco init
1414

15-
First, you need to install disco on your server. For this, you run `disco init` and you pass it the SSH `user@DOMAIN` to use for disco.
15+
Once you've installed the CLI on your local development machine, we will initialize your server. For this, you run `disco init` on your computer and pass it the ssh `USER@DOMAIN` combination that the CLI will use to connect to your server.
16+
17+
**NOTE**: you need to run this command on *your* computer, not on your server. ie, install the `disco` CLI and run all of the commands below on your development machine.
18+
19+
For example, if the user is `root` and the domain is `disco.example.com`:
1620

17-
For example, if the user is `root` and the domain is `disco.example.com`
1821
```bash
1922
2023
```
2124

2225
## Step Two: Add the Github app
2326

24-
Once disco is installed, it will need to be connected to Github.
27+
Once disco is installed, it will need to be connected to Github. Run:
2528

26-
Run
2729
```bash
2830
disco github:apps:add
2931
```

0 commit comments

Comments
 (0)