7554ed4ae3
Contributes a basic mysql-backed API with basic CRUD functionalities.
40 lines
1.3 KiB
Text
40 lines
1.3 KiB
Text
name: mysql-basics
|
|
version: 0.1.0.0
|
|
synopsis: Simple MySQL API cookbook example
|
|
homepage: http://docs.servant.dev/
|
|
license: BSD3
|
|
license-file: ../../../servant/LICENSE
|
|
author: Servant Contributors
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
|
build-type: Simple
|
|
cabal-version: >=1.10
|
|
|
|
executable run
|
|
hs-source-dirs: .
|
|
main-is: MysqlBasics.hs
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
|
build-depends: aeson
|
|
, base
|
|
, bytestring
|
|
, http-client
|
|
, monad-logger
|
|
, mysql-simple
|
|
, persistent
|
|
, persistent-mysql
|
|
, persistent-template
|
|
, resource-pool
|
|
, resourcet
|
|
, servant
|
|
, servant-client
|
|
, servant-server
|
|
, text
|
|
, transformers
|
|
, wai
|
|
, warp
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall -pgmL markdown-unlit
|
|
build-tool-depends: markdown-unlit:markdown-unlit
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/githubuser/mysql-basics
|