#!/usr/bin/env perl # Dec 2021 # Daniel Bowling use Mojolicious::Lite -signatures; use Mojo::Pg; use lib 'lib'; use GuestbookNg::Model::Test; # Plugins plugin 'Config'; # Helpers helper pg => sub { state $pg = Mojo::Pg->new( 'postgres://' . app->config->{'pg_user'} . ':' . app->config->{'pg_pw'} . '@localhost/' . app->config->{'pg_db'} ); }; helper test => sub { state $test = GuestbookNg::Model::Test->new(pg => shift->pg) }; # Routes under sub ($c) { $c->test->create_table() }; get '/' => sub ($c) { $c->render() } => 'index'; any '/test' => sub ($c) { my $method = $c->req->method(); my $time = $c->test->now(); my $string = $method eq 'POST' ? $c->test->test_model($c->param('string')) : undef; $c->render( method => $method, string => $string, time => $time ); }; # Send it app->start();