summaryrefslogtreecommitdiff
path: root/fig-frontend/fig-frontend.cabal
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-11-07 22:37:32 -0500
committerLLLL Colonq <llll@colonq>2024-11-07 22:37:32 -0500
commit624f7ba8b2fcda6675951dd8d41dcc99017484cf (patch)
treeff1bcc3ee77c73e73c3e246bc8e18ce8f3aca004 /fig-frontend/fig-frontend.cabal
parentbb3f54c297f480db32303e9ee78fb72c5418b77a (diff)
Rename fig-frontend to fig-web
(It was the backend anyway :3)
Diffstat (limited to 'fig-frontend/fig-frontend.cabal')
-rw-r--r--fig-frontend/fig-frontend.cabal69
1 files changed, 0 insertions, 69 deletions
diff --git a/fig-frontend/fig-frontend.cabal b/fig-frontend/fig-frontend.cabal
deleted file mode 100644
index 9fc8f8e..0000000
--- a/fig-frontend/fig-frontend.cabal
+++ /dev/null
@@ -1,69 +0,0 @@
-cabal-version: 3.4
-name: fig-frontend
-version: 0.1.0.0
-
-common defaults
- ghc-options: -Wall
- default-language: GHC2021
- default-extensions: NoImplicitPrelude PackageImports LambdaCase MultiWayIf OverloadedStrings OverloadedLists OverloadedRecordDot DuplicateRecordFields RecordWildCards NoFieldSelectors BlockArguments ViewPatterns TypeFamilies DataKinds GADTs
-
-common deps
- build-depends:
- base
- , aeson
- , base64
- , binary
- , bytestring
- , containers
- , data-default-class
- , directory
- , errors
- , filepath
- , hedis
- , http-types
- , http-client
- , http-client-tls
- , jose-jwt
- , lens
- , lucid2
- , megaparsec
- , mtl
- , network
- , random
- , req
- , safe-exceptions
- , scotty
- , text
- , time
- , tomland
- , transformers
- , unordered-containers
- , vector
- , wai
- , wai-extra
- , wai-middleware-static
- , wai-websockets
- , warp
- , websockets
- , wuss
- , fig-utils
- , fig-bus
-
-library
- import: defaults
- import: deps
- hs-source-dirs: src
- exposed-modules:
- Fig.Frontend
- Fig.Frontend.Utils
- Fig.Frontend.Auth
- Fig.Frontend.State
- Fig.Frontend.DB
-
-executable fig-frontend
- import: defaults
- import: deps
- build-depends: fig-frontend, optparse-applicative
- hs-source-dirs:
- main
- main-is: Main.hs