Skip to content

Commit 632eddf

Browse files
committed
UPDATE README AND VERSION
1 parent 7614802 commit 632eddf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "faucet-server"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
edition = "2021"
55
authors = ["Andrés F. Quintero <[email protected]>"]
66
description = "Welcome to Faucet, your go-to solution for deploying Plumber APIs and Shiny Applications with blazing speed and efficiency. Faucet is a high-performance server built with Rust, offering Round Robin and Round Robin + IP Hash load balancing for seamless scaling and distribution of your R applications. Whether you're a data scientist, developer, or DevOps enthusiast, Faucet streamlines the deployment process, making it easier than ever to manage replicas and balance loads effectively."

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ faucet start --dir /path/to/plumber/api
4949
The server will automatically listen on port `3838` by default. To change the host and port, use the `--host` flag to specify the socket address to bind to the service.
5050

5151
```bash
52-
faucet start --dir /path/to/plumber/api --host 0.0.0.0:3000
52+
faucet --host 0.0.0.0:3000 start --dir /path/to/plumber/api
5353
```
5454

5555
By default faucet will start as many workers as there are logical cores on the machine. To specify the number of workers, use the `--workers` flag.
@@ -69,7 +69,7 @@ faucet start --dir /path/to/shiny/app
6969
The server will automatically listen on port `3838` by default. To change the host and port, use the `--host` flag to specify the socket address to bind to the service.
7070

7171
```bash
72-
faucet start --dir /path/to/shiny/app --host 0.0.0.0:3000
72+
faucet --host 0.0.0.0:3000 start --dir /path/to/shiny/app
7373
```
7474

7575
By default faucet will start as many workers as there are logical cores on the machine. To specify the number of workers, use the `--workers` flag.
@@ -137,7 +137,7 @@ flat to either `x-forwarded-for` or `x-real-ip` depending on which header you
137137
set in Nginx.
138138

139139
```bash
140-
faucet start --dir /path/to/plumber/api --ip-from x-forwarded-for
140+
faucet --ip-from x-forwarded-for start --dir /path/to/plumber/api
141141
```
142142

143143
## Installation

0 commit comments

Comments
 (0)