euchre-live

Euchre web-app for the socially distant family
git clone git://git.alexkarle.com/euchre-live.git
Log | Files | Refs | README | LICENSE

commit d7e52958fa63ca679d0c4929b7717b31d7d96ed5 (patch)
parent 41d77f292fd149615afdac2bce410a937db4f6d4
Author: Alex Karle <alex@karle.co>
Date:   Tue, 24 Mar 2020 23:52:39 -0400

doc: README -> README.md

You win this time, fancy renderings by various git-hosting websites! :)

Diffstat:
DREADME | 10----------
AREADME.md | 21+++++++++++++++++++++
Mgloat.pl | 2+-
3 files changed, 22 insertions(+), 11 deletions(-)

diff --git a/README b/README @@ -1,10 +0,0 @@ -euchre.live -=========== - -For my family <3 - -Installation ------------- -First, get a working Perl and cpanm. - - $ cpanm --installdeps . diff --git a/README.md b/README.md @@ -0,0 +1,21 @@ +euchre.live +=========== + +For my family <3 + +Euchre is our "family game", and with the COVID-19 social-distancing, we're +suddenly unable to play. + +Disappointed with the state of the online options, we decided to make our own. + +Installation +------------ +First, get a working Perl and cpanm. + + $ cpanm --installdeps . + +Running +------- +Run the development server as so: + + $ ./gloat.pl daemon diff --git a/gloat.pl b/gloat.pl @@ -9,6 +9,6 @@ use lib "$FindBin::RealBin/lib"; use Euchre::Game; -get '/' => { text => deal() }; +get '/' => { text => 'hi world' }; app->start;