Files
sis/sis-server.cabal
jbrechtel a717d619d3 feat: Hyperbole port compiles and builds successfully
- All page modules now use proper Page es '[ViewId] type with hyper embedding
- Fixed view DSL: tag calls, String/Text conversions, polymorphic context types
- DB effect uses convenience wrappers (lowercase) with send
- HyperView instances have DB :> es, IOE :> es constraints
- Main.hs uses liveAppWith with proper router
- Static file serving deferred (will use nginx or wai-app-static)
- Warning suppressions added where needed
- Build produces working 25MB sis-server binary
2026-07-16 06:50:20 -04:00

143 lines
3.2 KiB
Plaintext

cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.38.1.
--
-- see: https://github.com/sol/hpack
name: sis-server
version: 0.1.0
synopsis: Shared household chore/task tracker
description: A todo tracker for households and groups with shared repeated responsibilities. Pure Haskell Hyperbole web application.
author: James Brechtel
maintainer: james@flipstone.com
copyright: 2026 James Brechtel
license: BSD-3-Clause
build-type: Simple
library
exposed-modules:
Sis
Sis.Auth
Sis.Database
Sis.Page.Activity
Sis.Page.Chores
Sis.Page.Dashboard
Sis.Page.Household
Sis.Page.Login
Sis.Page.Signup
Sis.Route
Sis.Style
Sis.Types
Sis.View.Layout
other-modules:
Paths_sis_server
autogen-modules:
Paths_sis_server
hs-source-dirs:
src
default-extensions:
DataKinds
DerivingStrategies
ImportQualifiedPost
LambdaCase
OverloadedStrings
RecordWildCards
TupleSections
TypeFamilies
ghc-options: -Wall -Werror -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wredundant-constraints
build-depends:
aeson
, atomic-css
, base >=4.7 && <5
, base64-bytestring
, bytestring
, containers
, crypton
, data-default
, directory
, effectful
, effectful-core
, filepath
, http-types
, hyperbole
, memory
, random
, sqlite-simple
, string-conversions
, text
, time
, wai
, warp
default-language: Haskell2010
executable sis-server
main-is: Main.hs
other-modules:
Paths_sis_server
autogen-modules:
Paths_sis_server
hs-source-dirs:
app
default-extensions:
DataKinds
DerivingStrategies
ImportQualifiedPost
LambdaCase
OverloadedStrings
RecordWildCards
TupleSections
TypeFamilies
ghc-options: -Wall -Werror -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, bytestring
, containers
, directory
, effectful
, filepath
, http-types
, hyperbole
, sis-server
, text
, time
, wai
, wai-app-static
, wai-extra
, warp
default-language: Haskell2010
test-suite sis-server-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_sis_server
autogen-modules:
Paths_sis_server
hs-source-dirs:
test
default-extensions:
DataKinds
DerivingStrategies
ImportQualifiedPost
LambdaCase
OverloadedStrings
RecordWildCards
TupleSections
TypeFamilies
ghc-options: -Wall -Werror -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wredundant-constraints
build-depends:
base >=4.7 && <5
, bytestring
, containers
, directory
, effectful
, filepath
, hspec
, http-types
, sis-server
, text
, time
, wai
, warp
default-language: Haskell2010