keter/keter.cabal

91 lines
3.9 KiB
Plaintext
Raw Normal View History

2012-05-06 08:07:02 +04:00
Name: keter
2013-06-03 15:15:13 +04:00
Version: 0.4.0
2012-05-18 09:55:43 +04:00
Synopsis: Web application deployment manager, focusing on Haskell web frameworks
2013-01-28 12:12:50 +04:00
Description:
Handles deployment of web apps, providing a reverse proxy to achieve zero downtime deployments. For more information, please see the README on Github: <https://github.com/snoyberg/keter#readme>
.
Release history:
.
2013-06-03 15:15:13 +04:00
[0.4.0] Switch to fsnotify to get cross-platform support. No longer using raw proxies, but instead WAI proxies.
.
2013-05-29 10:43:52 +04:00
[0.3.7] Sending a HUP signal reloads the list of deployed apps. This is useful for circumstances where inotify does not work correctly, such as on file systems which do not support it.
.
2013-01-28 12:12:50 +04:00
[0.3.5] You can now create Keter bundles without any applications. These can contain static hosts and redirects.
2012-05-06 08:07:02 +04:00
Homepage: http://www.yesodweb.com/
License: MIT
License-file: LICENSE
Author: Michael Snoyman
Maintainer: michael@snoyman.com
2012-05-18 09:55:43 +04:00
Category: Web, Yesod
2012-05-06 08:07:02 +04:00
Build-type: Simple
2012-05-06 08:21:19 +04:00
Cabal-version: >=1.8
2012-05-06 08:07:02 +04:00
2012-05-06 08:21:19 +04:00
Library
2012-05-06 08:07:02 +04:00
Build-depends: base >= 4 && < 5
2012-05-06 08:21:19 +04:00
, directory
, bytestring
2012-05-06 20:09:27 +04:00
, text
2012-05-06 08:21:19 +04:00
, containers
, transformers
, process
2012-05-06 20:09:27 +04:00
, random
2012-05-06 08:21:19 +04:00
, data-default
2012-05-11 08:38:05 +04:00
, filepath
, zlib
2012-05-11 11:40:01 +04:00
, network
2012-05-17 08:15:25 +04:00
, time
, tar >= 0.4
2012-05-17 10:32:11 +04:00
, template-haskell
2012-05-06 08:21:19 +04:00
, blaze-builder >= 0.3 && < 0.4
2013-07-10 10:57:38 +04:00
, yaml >= 0.8.4 && < 0.9
2012-10-04 20:18:00 +04:00
, unix-compat >= 0.3 && < 0.5
2013-06-03 14:34:47 +04:00
, fsnotify >= 0.0.11
2012-05-14 11:15:50 +04:00
, system-filepath >= 0.4 && < 0.5
2012-05-14 12:18:09 +04:00
, system-fileio >= 0.3 && < 0.4
2013-02-18 12:47:46 +04:00
, conduit >= 0.5
, network-conduit >= 0.6
2013-04-02 12:30:45 +04:00
, network-conduit-tls >= 1.0.0.2
2013-06-03 15:15:13 +04:00
, http-reverse-proxy >= 0.2 && < 0.3
, unix-process-conduit >= 0.2.1 && < 0.3
, unix >= 2.5 && < 2.7
2012-10-12 14:59:46 +04:00
, wai-app-static >= 1.3 && < 1.4
2013-04-02 10:57:01 +04:00
, wai >= 1.4 && < 1.5
2012-10-21 09:07:26 +04:00
, http-types
, regex-tdfa >= 1.1
, attoparsec >= 0.10
, http-conduit
, case-insensitive
, array
, mtl
2013-06-03 15:15:13 +04:00
, warp
, warp-tls
2013-07-10 10:57:38 +04:00
, aeson
2013-07-10 14:26:37 +04:00
, unordered-containers
2013-07-25 15:10:09 +04:00
, vector
2013-07-14 17:28:43 +04:00
Exposed-Modules: Keter.Plugin.Postgres
2013-07-10 14:26:37 +04:00
Keter.Types
2013-07-14 16:28:48 +04:00
Keter.Types.V04
2013-07-14 16:55:05 +04:00
Keter.Types.V10
Keter.Types.Common
2012-05-11 08:38:05 +04:00
Keter.App
2012-05-11 12:29:25 +04:00
Keter.Main
Keter.PortPool
2012-05-14 11:15:50 +04:00
Keter.Prelude
Keter.Proxy
2013-07-25 14:07:48 +04:00
Keter.HostManager
2013-07-25 15:18:32 +04:00
Network.HTTP.ReverseProxy.Rewrite
2013-07-10 10:57:38 +04:00
Data.Yaml.FilePath
2013-07-10 15:15:18 +04:00
Codec.Archive.TempTarball
2012-05-18 09:55:43 +04:00
ghc-options: -Wall
2012-05-06 08:07:02 +04:00
2012-05-06 08:26:30 +04:00
Executable keter
2012-05-18 09:55:43 +04:00
Main-is: keter.hs
hs-source-dirs: main
2013-07-10 14:26:37 +04:00
Build-depends: base, keter, system-filepath, data-default
2012-05-18 09:55:43 +04:00
ghc-options: -threaded -Wall
2012-09-30 00:44:48 +04:00
other-modules: Paths_keter
2012-05-06 08:26:30 +04:00
2012-05-06 08:07:02 +04:00
source-repository head
type: git
location: https://github.com/snoyberg/keter