The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#! /usr/bin/perl
# PODNAME: tapper-reports-api
# ABSTRACT: cmdline frontend to Tapper::Reports::API

use strict;
use warnings;

use Tapper::Reports::API;

my $EUID = `id -u`; chomp $EUID;
my $EGID = `id -g`; chomp $EGID;

Tapper::Reports::API->run(
                           port         => 7358,
                           log_level    => 2,
                           max_servers  => 2,
                           max_requests => 2,
                           user         => $EUID,
                           group        => $EGID,
                          );

__END__
=pod

=encoding utf-8

=head1 NAME

tapper-reports-api - cmdline frontend to Tapper::Reports::API

=head1 AUTHOR

AMD OSRC Tapper Team <tapper@amd64.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2012 by Advanced Micro Devices, Inc..

This is free software, licensed under:

  The (two-clause) FreeBSD License

=cut