-
Notifications
You must be signed in to change notification settings - Fork 0
/
quickwebapp.cabal
43 lines (38 loc) · 1.22 KB
/
quickwebapp.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: quickwebapp
version: 3.0.0.2
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, README.md
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