add yesod

hello world exaple is based on
https://github.com/yesodweb/yesod?tab=readme-ov-file#getting-started
This commit is contained in:
Daniel Barlow 2024-10-31 23:58:47 +00:00
parent dcaa38e5fe
commit fa289335d3
2 changed files with 20 additions and 2 deletions

View File

@ -1,10 +1,27 @@
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TypeFamilies #-}
module Main where
import Control.Exception
import Track(parseFile)
import Data.List as List
import Yesod.Core
data HelloWorld = HelloWorld
mkYesod "HelloWorld" [parseRoutes|
/ HomeR GET
|]
instance Yesod HelloWorld
getHomeR :: Handler Html
getHomeR = defaultLayout [whamlet|Hello World!|]
main :: IO ()
main = do
points <- Track.parseFile "track.gpx"
putStrLn ("loaded " ++ (show (List.length points)))
putStrLn ("loaded " ++ (show (List.length points)) ++ " points from GPX")
warp 3000 HelloWorld

View File

@ -71,6 +71,7 @@ executable souplesse
build-depends:
base ^>=4.18.2.1
, souplesse-lib
, yesod-core == 1.6.25.1
-- Directories containing source files.
hs-source-dirs: app