NAME
Suffit - Suffit Library Bundle
SYNOPSIS
#!/usr/bin/perl -w
package MyApp;
our $VERSION = '0.01';
use parent 'Suffit';
sub init { shift->routes->any('/' => {text => 'Hello World!'}) }
1;
package main;
use Mojo::Server;
Mojo::Server->new->build_app('MyApp', datadir => '/tmp')->start();
# Now try to run it:
# perl myapp.pl daemon -l http://*:8080
DESCRIPTION
Suffit Library Bundle combines multiple complementary libraries into a single cohesive package, enabling modular, scalable, and efficient development
EXAMPLE
See eg/myapp.pl file
HISTORY
See Changes file
TO DO
See TODO file
SEE ALSO
Acrux, WWW::Suffit, Mojolicious, WWW::Suffit::Server
AUTHOR
Serż Minus (Sergey Lepenkov) https://www.serzik.com <abalama@cpan.org>
COPYRIGHT
Copyright (C) 1998-2026 D&D Corporation
LICENSE
This program is distributed under the terms of the Artistic License Version 2.0
See the LICENSE file or https://opensource.org/license/artistic-2-0 for details