-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
76 lines (68 loc) · 1.4 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
name: ks-rest
version: '1.18'
synopsis: REST server for KitchenSnitch
description: REST server for the KitchenSnitch project. This server is for accessing the back-end KS database data which is currently stored in a MongoDB instance.
license: ISC
copyright: 2015 Dino Morelli
author: Dino Morelli
maintainer: Dino Morelli <[email protected]>
category: Network
extra-source-files:
- changelog.md
- .gitignore
- hsinstall/share/ks-rest/resources/ks-rest.conf
- package.yaml
- README.md
- stack.yaml
- stack.yaml.lock
- testsuite/*
- util/package.sh
- util/stress.sh
- util/resources/etc/systemd/system/ks-rest.service
- util/resources/DEBIAN/*
github: dino-/ks-rest
ghc-options:
- -fwarn-tabs
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
dependencies:
- base >=3 && <5
- bytestring
- filepath
- text
library:
source-dirs: src/lib
executables:
ks-rest:
main: Main.hs
source-dirs: src/ks-rest
default-extensions: OverloadedStrings
dependencies:
- aeson
- bson
- bson-generic
- fast-logger
- hslogger
- http-types
- ks-library >=1.13
- ks-rest
- mongoDB
- mtl
- resource-pool
- servant-docs
- servant-server
- tce-conf
- time
- wai
- wai-extra
- warp
# - warp -any
ks-api-keygen:
main: Main.hs
source-dirs: src/ks-api-keygen
dependencies:
- ks-rest
- SHA