commit 48774c8a060fa8aa0c7d8214bd4a55fb27c4e375 (patch)
parent f70ab135de61ac52db74b7d14900280ff5aeb0a1
Author: Alex Karle <alex@karle.co>
Date: Sat, 21 Mar 2020 13:58:58 -0400
Hello, world!
This commit sets up the basic Mojolicious server that we'll be using.
Diffstat:
3 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/README b/README
@@ -2,3 +2,9 @@ euchre.live
===========
For my family <3
+
+Installation
+------------
+First, get a working Perl and cpanm.
+
+ $ cpanm --installdeps .
diff --git a/cpanfile b/cpanfile
@@ -0,0 +1 @@
+requires 'Mojolicious';
diff --git a/gloat.pl b/gloat.pl
@@ -0,0 +1,10 @@
+#!/usr/bin/env perl
+# gloat.pl -- the Server
+#
+# Those who Euchre Gloat never Win
+# ~ Andy Karle
+use Mojolicious::Lite;
+
+get '/' => { text => 'Letsigo!' };
+
+app->start;