
Mojolicious::Command::psgi - PSGI command

use Mojolicious::Command::psgi; my $psgi = Mojolicious::Command::psgi->new; my $app = $psgi->run;

Mojolicious::Command::psgi starts applications with Mojo::Server::PSGI backend.

Mojolicious::Command::psgi inherits all attributes from Mojo::Command and implements the following new ones.
description my $description = $psgi->description;
$psgi = $psgi->description('Foo!');
Short description of this command, used for the command list.
usage my $usage = $psgi->usage;
$psgi = $psgi->usage('Foo!');
Usage information for this command, used for the help screen.

Mojolicious::Command::psgi inherits all methods from Mojo::Command and implements the following new ones.
runmy $app = $psgi->run;
Run this command.
