-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.yaml
49 lines (42 loc) · 1.3 KB
/
package.yaml
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
44
45
46
47
48
49
name: wai-lambda
version: 0.1.1.0
author: Nicolas Mattia <[email protected]>
maintainer: Nicolas Mattia <[email protected]>
copyright: (c) 2019 David Dal Busco and Nicolas Mattia
license: MIT
license-file: LICENSE
category: Web
synopsis: Haskell Webapps on AWS Lambda
github: deckgo/wai-lambda
description: |
![wai-lambda](https://github.com/deckgo/wai-lambda/raw/master/assets/wai-lambda-small.png)
Turn any [wai](https://www.stackage.org/package/wai) webapp ( [spock](https://www.spock.li/), [servant](https://docs.servant.dev/en/stable/), etc) into a handler for AWS [Lambda](https://aws.amazon.com/lambda/) and [API Gateway](https://aws.amazon.com/api-gateway/) requests.
Works with any Lambda environment (nodejs, python, etc). Find out more in the [README](https://github.com/deckgo/wai-lambda#wai-lambda---haskell-webapps-on-aws-lambda).
extra-source-files:
- README.md
library:
source-dirs: ./src
dependencies:
- aeson
- base < 5
- binary
- bytestring
- case-insensitive
- deepseq
- directory
- http-types
- iproute
- network
- temporary
- text
- unliftio
- unordered-containers
- vault
- wai
executable:
name: wai-lambda-hello
main: examples/Hello.hs
dependencies:
- wai-lambda
ghc-options:
- -Wall