mirror of
https://github.com/stackbuilders/hapistrano.git
synced 2024-11-25 21:06:51 +03:00
c377835763
* Create maintenance command * Read filepath and filename zsh:1: command not found: q * Addd config and test * Addd config and test * Add tests and imports * Add test for writing maintenance file Co-authored-by: Cristhian Motoche <CristhianMotoche@users.noreply.github.com> * Expand writeMaintenancFile function Co-authored-by: Cristhian Motoche <CristhianMotoche@users.noreply.github.com> * Add functionality for command enable Co-authored-by: Cristhian Motoche <CristhianMotoche@users.noreply.github.com> * Add delete function * Add filename and directory from configPath zsh:1: command not found: wq * Remove unused file * Change variable name * Remove Utils from cabal file * Remove environment file * Change pattern * Add suggested formatting and comments * Add more suggestions and option to run stack * Update README with new variables * Update README with changes Co-authored-by: Cristhian Motoche <CristhianMotoche@users.noreply.github.com>
129 lines
5.2 KiB
Plaintext
129 lines
5.2 KiB
Plaintext
cabal-version: 1.18
|
|
name: hapistrano
|
|
version: 0.4.4.0
|
|
synopsis: A deployment library for Haskell applications
|
|
description:
|
|
.
|
|
Hapistrano makes it easy to reliably deploy Haskell applications
|
|
to a server.
|
|
.
|
|
Following popular libraries like Ruby's <http://capistranorb.com/
|
|
Capistrano>, Hapistrano does the work of building the application
|
|
with dependencies into a distinct folder, and then atomically moves
|
|
a symlink to the latest complete build.
|
|
.
|
|
This allows for atomic switchovers to new application code after the
|
|
build is complete. Rollback is even simpler, since Hapistrano can
|
|
just point the `current` symlink to the previous release.
|
|
.
|
|
See <https://github.com/stackbuilders/hapistrano the project readme on GitHub>
|
|
for more information.
|
|
.
|
|
license: MIT
|
|
license-file: LICENSE
|
|
author: Justin Leitgeb
|
|
maintainer: hackage@stackbuilders.com
|
|
copyright: 2015-Present Stack Builders Inc.
|
|
category: System
|
|
homepage: https://github.com/stackbuilders/hapistrano
|
|
bug-reports: https://github.com/stackbuilders/hapistrano/issues
|
|
build-type: Simple
|
|
tested-with: GHC==8.10.17, GHC==9.0.2
|
|
extra-doc-files: CHANGELOG.md
|
|
, README.md
|
|
|
|
flag dev
|
|
description: Turn on development settings.
|
|
manual: True
|
|
default: False
|
|
|
|
flag static
|
|
description: Build a static binary.
|
|
manual: True
|
|
default: False
|
|
|
|
library
|
|
hs-source-dirs: src
|
|
exposed-modules: System.Hapistrano
|
|
, System.Hapistrano.Commands
|
|
, System.Hapistrano.Config
|
|
, System.Hapistrano.Core
|
|
, System.Hapistrano.Types
|
|
, System.Hapistrano.Commands.Internal
|
|
, System.Hapistrano.Maintenance
|
|
build-depends: aeson >= 2.0 && < 3.0
|
|
, ansi-terminal >= 0.9 && < 0.12
|
|
, base >= 4.9 && < 5.0
|
|
, filepath >= 1.2 && < 1.5
|
|
, gitrev >= 1.2 && < 1.4
|
|
, mtl >= 2.0 && < 3.0
|
|
, stm >= 2.0 && < 2.6
|
|
, path >= 0.5 && < 0.9
|
|
, process >= 1.4 && < 1.7
|
|
, typed-process >= 0.2 && < 0.3
|
|
, time >= 1.5 && < 1.11
|
|
, transformers >= 0.4 && < 0.6
|
|
, yaml >= 0.11.7 && < 0.12
|
|
if flag(dev)
|
|
ghc-options: -Wall -Werror
|
|
else
|
|
ghc-options: -O2 -Wall
|
|
default-language: Haskell2010
|
|
|
|
executable hap
|
|
hs-source-dirs: app
|
|
main-is: Main.hs
|
|
other-modules: Paths_hapistrano
|
|
build-depends: aeson >= 2.0 && < 3.0
|
|
, async >= 2.0.1.6 && < 2.4
|
|
, base >= 4.9 && < 5.0
|
|
, formatting >= 6.2 && < 8.0
|
|
, gitrev >= 1.2 && < 1.4
|
|
, hapistrano
|
|
, mtl >= 2.0 && < 3.0
|
|
, optparse-applicative >= 0.11 && < 0.17
|
|
, path >= 0.5 && < 0.9
|
|
, path-io >= 1.2 && < 1.7
|
|
, stm >= 2.4 && < 2.6
|
|
, yaml >= 0.11.7 && < 0.12
|
|
if flag(dev)
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror
|
|
else
|
|
if flag(static)
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2 -Wall -static -optl-static
|
|
else
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2 -Wall
|
|
default-language: Haskell2010
|
|
|
|
test-suite test
|
|
type: exitcode-stdio-1.0
|
|
hs-source-dirs: spec
|
|
main-is: Spec.hs
|
|
other-modules: System.HapistranoSpec
|
|
, System.HapistranoConfigSpec
|
|
, System.HapistranoPropsSpec
|
|
build-depends: base >= 4.9 && < 5.0
|
|
, directory >= 1.2.5 && < 1.4
|
|
, filepath >= 1.2 && < 1.5
|
|
, hapistrano
|
|
, hspec >= 2.0 && < 3.0
|
|
, mtl >= 2.0 && < 3.0
|
|
, path >= 0.5 && < 0.9
|
|
, path-io >= 1.2 && < 1.7
|
|
, process >= 1.4 && < 1.7
|
|
, QuickCheck >= 2.5.1 && < 3.0
|
|
, silently >= 1.2 && < 1.3
|
|
, temporary >= 1.1 && < 1.4
|
|
, yaml >= 0.8.16 && < 0.12
|
|
build-tools: hspec-discover >= 2.0 && < 3.0
|
|
|
|
if flag(dev)
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror
|
|
else
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2 -Wall
|
|
default-language: Haskell2010
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/stackbuilders/hapistrano.git
|