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 13251 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/byparr.yml

     mkdir -p ~/byparr; touch ~/byparr/byparr.yml
    
  2. Open the file with nano ~/byparr/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=8191
           - HOST=0.0.0.0
         ports:
           - "127.0.0.1:13251:8191"
         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/byparr.yml up -d
    

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

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