added client, added nix setup neither working yet

This commit is contained in:
Jack Wines 2021-12-19 21:51:43 -05:00
parent 42599685f3
commit 8e817110e6
9 changed files with 167 additions and 52 deletions

View file

@ -35,8 +35,9 @@ executable server
server,
shared
build-depends:
base < 5,
acid-state,
aeson,
base < 5,
containers,
http-types,
lucid,
@ -53,6 +54,9 @@ executable server
warp
default-language:
Haskell2010
other-modules:
API
InstantRunoff
executable client
@ -65,6 +69,8 @@ executable client
ScopedTypeVariables,
OverloadedStrings,
OverloadedLists,
DataKinds,
TypeOperators,
RecordWildCards,
DuplicateRecordFields,
DeriveGeneric
@ -78,6 +84,8 @@ executable client
base < 5,
containers,
miso,
servant
servant,
-- servant-client-ghcjs,
text
default-language:
Haskell2010