The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Beekeeper::Service::Dashboard::Worker - Dashboard backend service

VERSION

Version 0.09

SYNOPSIS

DESCRIPTION

This is the backend service of the Beekeeper dashboard. In order to use the dashboard run this service and put dashboard.html and associated .css and .js files into a publicly accessible web server.

Dashboard workers must be declared into config file pool.config.json:

  [
      {
          "pool_id" : "myapp",
          "bus_id"  : "backend-1",
          "workers" : {
              "Beekeeper::Service::Dashboard::Worker" : { "worker_count" : 1 },
               ...
          },
      },
  ]

Dashboard users must be declared into config file dashboard.config.json:

  {
      "users": {
          "admin": { "password": "eea8d7042107a675..." },
          "guest": { "password": "60c8d0904b5deb4c..." },
      },
  }

Use the following command to hash passwords of dashboard users:

  echo "Username:" && read U && echo "Password:" && read -s P && echo -n "Dashboard$U$P" | shasum -a 256 && U= P=

AUTHOR

José Micó, jose.mico@gmail.com

COPYRIGHT AND LICENSE

Copyright 2015-2023 José Micó.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language itself.

This software is distributed in the hope that it will be useful, but it is provided “as is” and without any express or implied warranties. For details, see the full text of the license in the file LICENSE.