name: ~project~ version: 0.0.0 license: BSD3 license-file: LICENSE author: ~name~ maintainer: ~name~ synopsis: The greatest Yesod web application ever. description: I'm sure you can say something clever here if you try. category: Web stability: Experimental cabal-version: >= 1.6 build-type: Simple homepage: http://~project~.yesodweb.com/ Flag dev Description: Turn on development settings, like auto-reload templates. Default: False Flag library-only Description: Build for use with "yesod devel" Default: False library if flag(library-only) Buildable: True else Buildable: False exposed-modules: Application other-modules: Foundation Import Model Settings Settings.StaticFiles Handler.Home ghc-options: -Wall -threaded -O0 cpp-options: -DDEVELOPMENT extensions: TemplateHaskell QuasiQuotes OverloadedStrings NoImplicitPrelude CPP MultiParamTypeClasses TypeFamilies GADTs GeneralizedNewtypeDeriving FlexibleContexts EmptyDataDecls NoMonomorphismRestriction executable ~project~ if flag(library-only) Buildable: False if flag(dev) cpp-options: -DDEVELOPMENT ghc-options: -Wall -threaded -O0 else ghc-options: -Wall -threaded -O2 main-is: main.hs extensions: TemplateHaskell QuasiQuotes OverloadedStrings NoImplicitPrelude CPP OverloadedStrings MultiParamTypeClasses TypeFamilies GADTs GeneralizedNewtypeDeriving FlexibleContexts EmptyDataDecls NoMonomorphismRestriction build-depends: base >= 4 && < 5 , yesod-platform >= 1.0 && < 1.1 , yesod >= 1.0 && < 1.1 , yesod-core >= 1.0 && < 1.1 , yesod-auth >= 1.0 && < 1.1 , yesod-static >= 1.0 && < 1.1 , yesod-default >= 1.0 && < 1.1 , yesod-form >= 1.0 && < 1.1 , yesod-test >= 0.2 && < 0.3 , clientsession >= 0.7.3 && < 0.8 , bytestring >= 0.9 && < 0.10 , text >= 0.11 && < 0.12 , persistent >= 0.9 && < 0.10 , persistent-~backendLower~ >= 0.9 && < 0.10 , template-haskell , hamlet >= 1.0 && < 1.1 , shakespeare-css >= 1.0 && < 1.1 , shakespeare-js >= 1.0 && < 1.1 , shakespeare-text >= 1.0 && < 1.1 , hjsmin >= 0.1 && < 0.2 , monad-control >= 0.3 && < 0.4 , wai-extra >= 1.2 && < 1.3 , yaml >= 0.7 && < 0.8 , http-conduit >= 1.4 && < 1.5 , directory >= 1.1 && < 1.2 , warp >= 1.2 && < 1.3 ~testsDep~