packages feed

quickwebapp-2.1.1.0: quickwebapp.cabal

name:                quickwebapp
version:             2.1.1.0
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 3000.
    .
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.*,
                       bytestring,
                       text,
                       http-types,
                       scotty
  -- hs-source-dirs:      src
  default-language:    Haskell2010