prepare for release
This commit is contained in:
parent
e43532b71d
commit
824c56ff22
3 changed files with 19 additions and 10 deletions
15
.travis.yml
Normal file
15
.travis.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
language: haskell
|
||||||
|
|
||||||
|
ghc:
|
||||||
|
- 7.8
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
irc:
|
||||||
|
channels:
|
||||||
|
- "irc.freenode.org#servant"
|
||||||
|
template:
|
||||||
|
- "%{repository}#%{build_number} - %{commit} on %{branch} by %{author}: %{message}"
|
||||||
|
- "Build details: %{build_url} - Change view: %{compare_url}"
|
||||||
|
skip_join: true
|
||||||
|
on_success: change
|
||||||
|
on_failure: always
|
13
README.md
13
README.md
|
@ -1,17 +1,10 @@
|
||||||
# servant
|
# servant-server
|
||||||
|
|
||||||
[![Build Status](https://secure.travis-ci.org/haskell-servant/servant.svg)](http://travis-ci.org/haskell-servant/servant)
|
[![Build Status](https://secure.travis-ci.org/haskell-servant/servant-server.svg)](http://travis-ci.org/haskell-servant/servant-server)
|
||||||
|
|
||||||
![servant](https://raw.githubusercontent.com/haskell-servant/servant/master/servant.png)
|
![servant](https://raw.githubusercontent.com/haskell-servant/servant/master/servant.png)
|
||||||
|
|
||||||
These libraries provides a family of combinators to define webservices and automatically generate the documentation and client-side querying functions for each endpoint.
|
This library lets you *implement* an HTTP server with handlers for each endpoint of a servant API, handling most of the boilerplate for you.
|
||||||
|
|
||||||
In order to minimize the dependencies depending on your needs, we provide these features under different packages.
|
|
||||||
|
|
||||||
- `servant`, which contains everything you need to *declare* a webservice and *implement* an HTTP server with handlers for each endpoint.
|
|
||||||
- `servant-client`, which lets you derive automatically Haskell functions that let you query each endpoint of a *servant* webservice.
|
|
||||||
- `servant-docs`, which lets you generate API docs for your webservice.
|
|
||||||
- `servant-jquery`, which lets you derive Javascript functions (based on jquery) to query your API's endpoints, in the same spirit as `servant-client`.
|
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
|
|
|
@ -86,6 +86,7 @@ test-suite spec
|
||||||
, QuickCheck
|
, QuickCheck
|
||||||
, parsec
|
, parsec
|
||||||
, servant
|
, servant
|
||||||
|
, servant-server
|
||||||
, string-conversions
|
, string-conversions
|
||||||
, temporary
|
, temporary
|
||||||
, text
|
, text
|
||||||
|
|
Loading…
Reference in a new issue