26 lines
504 B
Markdown
26 lines
504 B
Markdown
## Serve a RESTful API from any Postgres database
|
|
|
|
[](https://travis-ci.org/begriffs/dbapi)
|
|
|
|
### Installation
|
|
|
|
```sh
|
|
brew install postgres
|
|
cabal install -j --enable-tests
|
|
```
|
|
|
|
Example usage:
|
|
|
|
```sh
|
|
dbapi -p 3000 -d postgres://[user]:@localhost:5432/[database]
|
|
```
|
|
|
|
### Running tests
|
|
|
|
```sh
|
|
createuser --superuser --no-password dbapi_test
|
|
createdb -O dbapi_test -U postgres dbapi_test
|
|
|
|
cabal test --show-details=always --test-options="--color"
|
|
```
|