-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
88 lines (88 loc) · 1.46 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: rfp-service
version: '0.0.5.2'
synopsis: RFPService service
description: RFPService Service
category: Web
author: RFP <[email protected]>
maintainer: RFP <[email protected]>
copyright: 2020 RFP
license: MIT
git: https://www.gitlab.com/reiknirit/rfp-service
dependencies:
- base >=4.9 && <5.0
- persistent ==2.9.2
- persistent-template ==2.6.0
- persistent-postgresql
- dotenv
- wai-extra
- wai-cors
- mtl
- hslogger
- fast-logger
- http-types
- text
- time
- hworker
- hedis
- optparse-applicative
library:
source-dirs: src
ghc-options: -fwarn-unused-imports
exposed-modules:
- Config
- Models
- API
- API.Service
- API.Attachment
- API.Submission
- API.User
- Cli
- Elasticsearch
- Utils
- Logger
- Worker.Base
- Worker.RFPWorker
dependencies:
- aeson
- bloodhound
- bytestring
- http-client
- http-types
- monad-control
- monad-logger
- servant
- servant-multipart
- servant-server
- transformers
- wai
- warp
- text
- containers
- fast-logger
- unordered-containers
- safe
- uuid
- hip
- filepath
- parser-combinators
- directory
- bcrypt
- sendgrid-v3
executables:
rfp-service:
main: app/Main.hs
ghc-options: -fwarn-unused-imports
dependencies:
- rfp-service
- base >=4.9 && <5.0
- wai
- warp
- monad-logger
- utf8-string
- bytestring
- base64-bytestring
rfp-worker:
main: app/Worker.hs
ghc-options: -fwarn-unused-imports
dependencies:
- rfp-service