]> git.ktnx.net Git - lsl.git/blob - lib/App/LazyShoppingList/Web.pm
debug messages in development environment
[lsl.git] / lib / App / LazyShoppingList / Web.pm
1 use v5.26;
2 use warnings;
3 use utf8;
4
5 package App::LazyShoppingList::Web;
6 use Dancer2;
7
8 our $VERSION = '0.1';
9
10 use JSON();
11
12 use experimental 'signatures';
13
14 set charset => 'UTF-8';
15
16 # main web-application
17 get '/' => sub {
18     set environment => $ENV{PLACK_ENV};
19     template 'index' => { 'title' => 'App::REST::LazyShoppingList' };
20 };
21
22 true;