29 lines
495 B
Text
29 lines
495 B
Text
cabal-version: 3.0
|
|
name: blog-proxy
|
|
version: 0.1.0.0
|
|
author: outfoxxed
|
|
build-type: Simple
|
|
|
|
common warnings
|
|
ghc-options: -Wall
|
|
|
|
executable blog-proxy
|
|
import: warnings
|
|
main-is: Main.hs
|
|
other-modules: Config, TemplatePage, TemplateLoader, PlausibleQuery, Server
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
|
|
build-depends:
|
|
base,
|
|
bytestring,
|
|
text,
|
|
split,
|
|
containers,
|
|
filepath,
|
|
directory,
|
|
aeson,
|
|
http-types,
|
|
http-conduit,
|
|
wai,
|
|
warp,
|