a717d619d3
- 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
83 lines
1.5 KiB
YAML
83 lines
1.5 KiB
YAML
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
|
|
|
|
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
|
|
|
|
dependencies:
|
|
- base >= 4.7 && < 5
|
|
- bytestring
|
|
- containers
|
|
- directory
|
|
- effectful
|
|
- filepath
|
|
- http-types
|
|
- text
|
|
- time
|
|
- wai
|
|
- warp
|
|
|
|
library:
|
|
source-dirs: src
|
|
dependencies:
|
|
- aeson
|
|
- atomic-css
|
|
- base64-bytestring
|
|
- crypton
|
|
- data-default
|
|
- effectful-core
|
|
- hyperbole
|
|
- memory
|
|
- random
|
|
- sqlite-simple
|
|
- string-conversions
|
|
|
|
executables:
|
|
sis-server:
|
|
main: Main.hs
|
|
source-dirs: app
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- effectful
|
|
- hyperbole
|
|
- sis-server
|
|
- wai-app-static
|
|
- wai-extra
|
|
|
|
tests:
|
|
sis-server-test:
|
|
main: Spec.hs
|
|
source-dirs: test
|
|
dependencies:
|
|
- hspec
|
|
- sis-server
|