wai-devel/README.md

45 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

### wai-devel
2015-12-22 17:38:08 +00:00
[![Join the chat at https://gitter.im/urbanslug/wai-devel](https://badges.gitter.im/urbanslug/wai-devel.svg)](https://gitter.im/urbanslug/wai-devel?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build Status](https://travis-ci.org/urbanslug/wai-devel.svg?branch=master)](https://travis-ci.org/urbanslug/wai-devel)
2015-10-20 10:12:59 +00:00
Development server for [WAI] compliant haskell web applications.
### Installation
#### From hackage
- stack install wai-devel
or
- cabal install wai-devel
#### From source
- cd wai-devel
- stack build
- stack install
or
- cd wai-devel
- cabal build
- cabal install
The wai-devel binary will now be in your ~/.local/bin you can use it freely.
### Usage
See the [wiki].
### Contributing
No contributing page yet. Just read the haddocks.
See the [wai-devel minimal reproduction in the wiki].
2015-08-22 05:36:56 +00:00
### Issues
2015-10-20 10:12:59 +00:00
Doesn't recompile on changes in Template Haskell files. Here is the [specific issue].
2015-08-21 16:55:02 +00:00
### Coming next
- Provide a dashboard page with compilation status, GC stats, and other such useful meta-information.
- Port to windows. This depends on ide-backend getting ported to Windows.
2015-09-10 16:29:22 +00:00
[WAI]: http://www.yesodweb.com/book/web-application-interface
[wiki]: https://github.com/urbanslug/wai-devel/wiki
2015-10-20 10:12:59 +00:00
[specific issue]: https://github.com/fpco/ide-backend/issues/313
[wai-devel minimal reproduction in the wiki]: https://github.com/urbanslug/wai-devel/wiki/Minimal-reproduction.