Sure, here's a tutorial on how to install WBO from https://github.com/lovasoa/whitebophir on FreeBSD Latest using the command line:

  1. Open the terminal on your FreeBSD system.

  2. Install the required dependencies by running the following commands one by one:

    pkg install gmake
    pkg install php74
    pkg install php74-curl
    pkg install php74-json
    pkg install php74-mbstring
    pkg install php74-pdo_mysql
    pkg install php74-session
    pkg install php74-xml
    
  3. Clone the WBO repository by running the following command:

    git clone https://github.com/lovasoa/whitebophir.git
    
  4. Navigate to the whitebophir directory by running the following command:

    cd whitebophir
    
  5. Install the required dependencies for WBO by running the following command:

    composer install --no-dev
    
  6. Copy the sample configuration file to the main configuration file by running the following command:

    cp config.sample.php config.php
    
  7. Update the MySQL database configuration in config.php by replacing the following values with your own:

    'host' => 'localhost',
    'user' => 'your-db-username',
    'password' => 'your-db-password',
    'database' => 'your-db-name',
    
  8. Create the necessary tables in the MySQL database by running the following command:

    php7.4 index.php setup
    
  9. Start the PHP server by running the following command:

    php7.4 -S localhost:8080
    
  10. Open your web browser and navigate to http://localhost:8080. You should see the WBO homepage.

Congratulations, you have successfully installed WBO on FreeBSD Latest! You can now use it to organize and collaborate on your whiteboard drawings.