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
|
2017-02-19 12:47:37 +00:00
|
|
|
, System.Serverman.Actions.Nginx
|
2017-03-04 10:17:24 +00:00
|
|
|
|
2017-02-19 12:47:37 +00:00
|
|
|
, System.Serverman.Actions.Database
|
|
|
|
, System.Serverman.Actions.MySQL
|
2017-02-23 09:08:39 +00:00
|
|
|
, 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
|
2017-02-23 09:08:39 +00:00
|
|
|
, System.Serverman.Actions.Start
|
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
|
2017-02-23 09:08:39 +00:00
|
|
|
, 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
|