Skip to content
Snippets Groups Projects
account-manager.cgi.in 459 B
#!/usr/bin/perl

use strict;
use warnings;
use utf8;
use lib qw(@modulesdir@);

use Config::Tiny;

use AccountManager::App;

my $configuration_file =
    $ENV{ACCOUNTMANAGER_CONFIG} || '@sysconfdir@/manager.conf';
my $configuration = Config::Tiny->read($configuration_file);

my $app = AccountManager::App->new(
    configuration => $configuration
);
$app->run();

__END__

=head1 NAME

account-manager-web.pl - Web interface for the Test IdP Account Manager