Skip to content

Commit 67d2f37

Browse files
Update getting_started.md
Related to #107
1 parent 0dc75b6 commit 67d2f37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/en/getting_started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Once installed, use the following command to start faucet with default settings:
66

77
```bash
88
# Start faucet
9-
faucet
9+
faucet start
1010
```
1111

1212
faucet will bind to `127.0.0.1:3838` and automatically determine the number of worker threads based on the number of CPUs on the host machine.
@@ -39,7 +39,7 @@ shinyApp(ui, server)
3939
3. Start faucet in the same directory as your Shiny app:
4040

4141
```bash
42-
faucet
42+
faucet start
4343
```
4444

4545
faucet will automatically detect the Shiny app and deploy it.
@@ -57,14 +57,14 @@ a worker for each core.
5757
You can customize the number of workers by using the `--workers` flag:
5858

5959
```bash
60-
faucet --workers 4
60+
faucet start --workers 4
6161
```
6262

6363
Or by setting the `FAUCET_WORKERS` environment variable:
6464

6565
```bash
6666
export FAUCET_WORKERS=4
67-
faucet
67+
faucet start
6868
```
6969

7070
In both cases, faucet will create 4 workers on random available ports.

0 commit comments

Comments
 (0)