Optimized look and user experience; fixed errors

This commit is contained in:
Florian "flowdy" Heß
2017-01-28 14:00:20 +01:00
parent 5aaff598d1
commit 6f19437901
23 changed files with 1434 additions and 44 deletions

12
server Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env perl
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin";
$ENV{MOJO_LISTEN} //= "http://127.0.0.1:3000";
# Start command line interface for application
require Mojolicious::Commands;
my $app = Mojolicious::Commands->start_app("TrsrDB::HTTP");