-
Notifications
You must be signed in to change notification settings - Fork 71
/
keter.cabal
161 lines (147 loc) · 4.26 KB
/
keter.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
cabal-version: 3.0
name: keter
version: 2.1.8
synopsis:
Web application deployment manager, focusing on Haskell web frameworks. It mitigates downtime.
description:
Deployment system for web applications, originally intended for hosting Yesod
applications.
It binds to the main port (usually port 80) and reverse proxies requests to your application based on virtual hostnames.
It provides SSL support if requested.
It automatically launches applications, monitors processes, and relaunches any processes which die.
It also provides graceful redeployment support, which mitigates downtime.
homepage: http://www.yesodweb.com/
license: MIT
license-file: LICENSE
author: Michael Snoyman
maintainer: [email protected]
category: Web, Yesod
build-type: Simple
extra-source-files:
ChangeLog.md
README.md
flag system-filepath
description: Use system-filepath
default: False
library
default-language: Haskell98
build-depends:
aeson >=2.0.0 && <2.2 || ^>=2.2.0.0,
array >=0.5.4 && <0.6,
async >=2.2.4 && <2.3,
attoparsec >=0.14.4 && <0.15,
base >=4 && <5,
blaze-builder >=0.3 && <0.5,
bytestring >=0.10.12 && <0.12 || ^>=0.12.0.0,
case-insensitive >=1.2.1 && <1.3,
conduit >=1.3.4 && <1.4,
conduit-extra >=1.3.5 && <1.4,
containers >=0.6.4 && <0.7 || ^>=0.7,
directory >=1.3.6 && <1.4,
fast-logger >=3.0.0 && <4.0.0,
filepath >=1.4.2 && <1.6,
fsnotify >=0.3.0 && <0.5,
http-client >=0.7.11 && <0.8,
http-conduit >=2.3.8 && <2.4,
http-reverse-proxy >=0.6.0.1 && <0.7,
http-types >=0.12.3 && <0.13,
indexed-traversable >=0.1.2 && <0.2,
lifted-base >=0.2.3 && <0.3,
monad-logger >=0.3.0 && <0.4.0,
mtl >=2.2.2 && <2.3 || ^>=2.3.1,
network >=3.1.2 && <3.2 || ^>=3.2.0,
optparse-applicative >=0.16.1 && <0.18 || ^>=0.18.1.0,
process >=1.4.3 && <1.7,
random >=1.2.1 && <1.3,
regex-tdfa >=1.3.1 && <1.4,
stm >=2.5.0 && <2.6,
tar >=0.6.0.0 && <0.7,
template-haskell >=2.17.0 && <3.0,
text >=1.2.5 && <3.0,
time >=1.9.3 && <2.0,
tls >=1.5.7 && <2.1 || ^>= 2.1.0 || ^>=2.1.1,
tls-session-manager >=0.0.4 && <0.1,
transformers >=0.5.6 && <0.7,
unix >=2.7.2 && <2.9,
unix-compat >=0.3 && <0.8,
unliftio-core >=0.2.0.0 && <0.3.0.0,
unordered-containers >=0.2.17 && <0.3,
vector >=0.12.3.0 && <1.0.0.0,
wai >=3.2.3 && <3.3,
wai-app-static >=3.1 && <3.2,
wai-extra >=3.0.3 && <3.2,
warp >=3.3.20 && <3.4 || ^>=3.4.0,
warp-tls >=3.0.3 && <3.4.0 || ^>=3.4.0,
yaml >=0.8.4 && <0.12,
zlib >=0.6.2 && <0.7 || ^>=0.7.0
if impl(ghc <7.6)
build-depends: ghc-prim
if flag(system-filepath)
build-depends: system-filepath
cpp-options: -DSYSTEM_FILEPATH
exposed-modules:
Keter.App
Keter.AppManager
Keter.Cli
Keter.Common
Keter.Conduit.Process.Unix
Keter.Config
Keter.Config.Middleware
Keter.Config.V04
Keter.Config.V10
Keter.Context
Keter.HostManager
Keter.LabelMap
Keter.Logger
Keter.Main
Keter.Plugin.Postgres
Keter.PortPool
Keter.Proxy
Keter.Rewrite
Keter.TempTarball
Keter.Yaml.FilePath
other-modules: Keter.Aeson.KeyHelper
Paths_keter
ghc-options: -Wall
c-sources: cbits/process-tracker.c
hs-source-dirs: src
executable keter
default-language: Haskell98
main-is: keter.hs
hs-source-dirs: src/main
build-depends:
base,
filepath,
keter
ghc-options: -threaded -Wall
other-modules: Paths_keter
autogen-modules: Paths_keter
test-suite test
default-language: Haskell98
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
build-depends:
base,
bytestring,
conduit,
http-client,
http-conduit,
http-types,
HUnit,
keter,
lens,
monad-logger,
mtl,
stm,
tasty,
tasty-hunit,
transformers,
unix,
wai,
warp,
wreq
ghc-options: -Wall -threaded
source-repository head
type: git
location: https://github.com/snoyberg/keter