Whatbox Logo

Wiki > Byparr

At this time, Whatbox servers have limited support for Byparr. It may stop working at any time.

A random port number between 10000 and 32767 is needed and will be used to access Byparr. The port number 11281 has automatically been generated and will be used throughout this article, but can be changed if needed.

Connect to your slot using SSH

  1. Create ~/byparr.yml

     touch ~/byparr.yml
    
  2. Open the file with nano ~/byparr.yml and add the text in this text box to the file

     services:
       byparr:
         image: ghcr.io/thephaseless/byparr:main
         container_name: byparr
         environment:
           - LOG_LEVEL=INFO
           - PORT=11281
           - HOST=127.0.0.1
         network_mode: host
         pull_policy: always
         restart: unless-stopped
    

    Save the file by pressing Ctrl+S then exit nano with Ctrl+X

  3. Run the Byparr application

     podman-compose -f ~/byparr.yml up -d
    

After returning to your shell prompt, Byparr will be accessible at http://localhost:11281 in any program running on your server capable of using the FlareSolverr API. You can test Byparr by running curl http://localhost:11281/docs Byparr will respond with some HTML.

To update Byparr, run this command to restart into the latest version: podman-compose -f ~/byparr.yml down; podman-compose -f ~/byparr.yml up -d