blunt: Point-free Haskell as a service.

[ deprecated, library, mit, program, web ] [ Propose Tags ]
Deprecated

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 0.0.6, 0.0.7, 0.0.8, 0.0.9, 0.0.10, 0.0.11, 0.0.12, 0.0.13, 0.0.14, 0.0.15, 0.0.16, 0.0.17, 1.0.0, 1.0.1, 1.0.2
Change log CHANGELOG.md
Dependencies array (>=0.3 && <0.6), base (>=4 && <5), blunt, bytestring, containers (>=0.4 && <0.6), haskell-src-exts (>=1.16 && <1.17), http-types, transformers (<0.5), wai, warp (>=3 && <4) [details]
License MIT
Author
Maintainer Taylor Fausak <taylor@fausak.me>
Category Web
Source repo head: git clone https://github.com/tfausak/blunt
Uploaded by fozworth at 2015-03-20T20:28:30Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables blunt
Downloads 12972 total (71 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-03-20 [all 1 reports]

Readme for blunt-0.0.9

[back to package description]

Blunt

Blunt makes Haskell expressions pointfree.


Blunt is a web front end to the pointfree library. While you can install and run it locally, there's no real reason to prefer it over the pointfree executable. Instead, use the hosted version on Heroku: https://evening-thicket-5270.herokuapp.com.

Install

$ cabal update
$ cabal install 'blunt ==0.0.*'

Use

$ blunt
# http://localhost:8080
$ env PORT=8888 blunt
# http://localhost:8888

Develop

$ git clone https://github.com/tfausak/blunt
$ cd blunt
$ cabal sandbox init
$ cabal install happy
$ cabal install

Deploy

$ heroku create
$ git checkout -b deploy
$ echo '{}' > package.json
$ echo 'web: ./blunt' > Procfile
$ cp dist/build/blunt/blunt .
$ git add package.json Procfile blunt
$ git commit --allow-empty-message --message ''
$ git push --force heroku deploy:master
$ git checkout master
$ git branch -D deploy