packages feed

quickwebapp-3.0.0.1: quickwebapp.cabal

name:                quickwebapp
version:             3.0.0.1
synopsis:            A quick webapp generator for any file processing tool
description:
    A quick-and-dirty api generator, inspired from the 'interact' function from
    'Prelude'.
    .
    > interactWeb reverse 
    .
    This creates a server listening on port 8080, or environment value PORT.
    .
license:             GPL-3
license-file:        LICENSE
author:              Julien Tanguy
maintainer:          julien.tanguy@jhome.fr
category:            Web
build-type:          Simple
extra-source-files:  Changelog
cabal-version:       >=1.10

bug-reports: https://github.com/jtanguy/quickwebapp/issues

source-repository head
    type:       git
    location:   https://github.com/jtanguy/quickwebapp
    branch:     master


library
  exposed-modules:     QuickWebApp
  build-depends:       base ==4.*,
                       containers,
                       bytestring,
                       text,
                       aeson,
                       either,
                       servant,
                       servant-server,
                       servant-lucid,
                       lucid,
                       warp

  default-language:    Haskell2010