faucet-server 2.1.0

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.
Documentation
# Instalación

## Opción 1: Descarga del Binario (Linux)

Descarga la última versión de faucet para Linux desde la
[página de lanzamientos en GitHub](https://github.com/ixpantia/faucet/releases).

```bash
FAUCET_VERSION="{{ FAUCET_VERSION }}"

wget https://github.com/ixpantia/faucet/releases/download/$FAUCET_VERSION/faucet-x86_64-unknown-linux-musl -O faucet

# Haz el binario ejecutable
chmod +x faucet

# Mueve el binario a un directorio en tu PATH (por ejemplo, el binario local del usuario)
mv faucet ~/.local/bin
```

> **Nota:**
> Aunque se espera que la descarga del binario funcione en la mayoría de las distribuciones de Linux,
> no se garantiza la compatibilidad con todos los sistemas. Si encuentras problemas,
> considera usar la instalación con Cargo o las opciones de compilación desde el origen.

## Opción 2: Instalación con Cargo (Linux, macOS, Windows)

Instala faucet con Cargo, el gestor de paquetes de Rust.

1. Instala Rust siguiendo las instrucciones [aquí]https://www.rust-lang.org/tools/install.

```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```

2. Instala faucet con Cargo.

```bash
cargo install faucet-server
```

## Opción 3: Compilar desde el Código Fuente (Linux, macOS, Windows)

1. Instala Rust siguiendo las instrucciones [aquí]https://www.rust-lang.org/tools/install.

```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```

2. Clona el repositorio de faucet.

```bash
git clone https://github.com/ixpantia/faucet.git
```

3. Compila faucet con Cargo.

```bash
cargo install --path .
```