serverman/serverman.cabal

74 lines
2.5 KiB
Plaintext
Raw Normal View History

2017-02-18 19:25:57 +00:00
name: serverman
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/mdibaiee/serverman
license: GPL-3
license-file: LICENSE
author: Mahdi Dibaiee
maintainer: mahdi@theread.me
copyright: 2017 Mahdi Dibaiee
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: System.Term
, System.Serverman
, System.Serverman.Utils
, System.Serverman.Action
2017-03-04 10:17:24 +00:00
2017-02-18 19:25:57 +00:00
, System.Serverman.Actions.WebServer
, System.Serverman.Actions.Nginx
2017-03-04 10:17:24 +00:00
, System.Serverman.Actions.Database
, System.Serverman.Actions.MySQL
, System.Serverman.Actions.MongoDB
2017-03-04 10:17:24 +00:00
, System.Serverman.Actions.FileSharing
, System.Serverman.Actions.VsFTPd
2017-02-18 19:25:57 +00:00
, System.Serverman.Actions.Install
, System.Serverman.Actions.Env
, System.Serverman.Actions.Start
2017-03-05 12:19:09 +00:00
, System.Serverman.Actions.Remote
2017-02-18 19:25:57 +00:00
, System.Serverman.Services
build-depends: base >= 4.7 && < 5
, free >= 4.12.4 && < 5
, hscolour >= 1.24.1 && < 2
, cmdargs >= 0.10.14 && < 1
, data-default-class
, process
, directory
, filepath
, async
, mysql >= 0.1.4 && < 1
, mongoDB >= 2.1.1.1 && < 3
, text
, bytestring
2017-02-18 19:25:57 +00:00
default-language: Haskell2010
executable serverman
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, serverman
, cli >= 0.1.2 && < 1
default-language: Haskell2010
test-suite serverman-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, serverman
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/githubuser/serverman