-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.yaml
52 lines (49 loc) · 1.11 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
50
51
52
name: serverless-haskell-example
category: AWS, Cloud, Network
maintainer: [email protected]
version: 1.0.0
github: seek-oss/serverless-haskell
license: MIT
synopsis: Deploying Haskell code onto AWS Lambda using Serverless
description: Example package to demonstrate deployment of Haskell code onto AWS Lambda using Serverless
dependencies:
- base >= 4.7 && < 5
library:
source-dirs:
- src
exposed-modules:
- Lib
- Database
- ServantShim
dependencies:
- aeson
- amazonka-core
- beam-core
- beam-mysql
- bytestring
- http-types
- lens
- mysql
- protolude
- servant-server
- serverless-haskell
- strict-concurrency
- text
- wai
- warp
executables:
apigw:
main: Main.hs
source-dirs: apigw-app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- aeson
- lens
- servant-server
- serverless-haskell
- serverless-haskell-example
- text
- unordered-containers