From dec7358f95cb4ed5f45eac7e4c8c97376a24ffcf Mon Sep 17 00:00:00 2001 From: "Yann Esposito (Yogsototh)" Date: Fri, 15 Nov 2013 17:01:30 +0100 Subject: [PATCH] Added a simple README file --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..f55a39e --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# Holy Haskell + +This very simple script will initialize your new Haskell project. +It will initialize the `.gitignore` file, the cabal file and give an +example of test suite. + +# Usage + +Clone the repository locally and launch the script: + +``` +./holy-haskell.sh +``` + +It will ask some questions, do your best dear aventurer! + +## dependencies + +- [Haskell](http://haskell.org/platform) +- [`cabal`](http://haskell.org/cabal) version at least 1.18 ; to install it: + + ``` + cabal update + cabal install cabal-install + ``` +- [`git`](http://git-scm.org) +- [`zsh`](http://zsh.org) which should be already installed on most platform