add yesod
hello world exaple is based on https://github.com/yesodweb/yesod?tab=readme-ov-file#getting-started
This commit is contained in:
parent
dcaa38e5fe
commit
fa289335d3
21
app/Main.hs
21
app/Main.hs
@ -1,10 +1,27 @@
|
|||||||
|
{-# LANGUAGE OverloadedStrings #-}
|
||||||
|
{-# LANGUAGE QuasiQuotes #-}
|
||||||
|
{-# LANGUAGE TemplateHaskell #-}
|
||||||
|
{-# LANGUAGE TypeFamilies #-}
|
||||||
module Main where
|
module Main where
|
||||||
|
|
||||||
import Control.Exception
|
|
||||||
import Track(parseFile)
|
import Track(parseFile)
|
||||||
import Data.List as List
|
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 :: IO ()
|
||||||
main = do
|
main = do
|
||||||
points <- Track.parseFile "track.gpx"
|
points <- Track.parseFile "track.gpx"
|
||||||
putStrLn ("loaded " ++ (show (List.length points)))
|
putStrLn ("loaded " ++ (show (List.length points)) ++ " points from GPX")
|
||||||
|
warp 3000 HelloWorld
|
||||||
|
@ -71,6 +71,7 @@ executable souplesse
|
|||||||
build-depends:
|
build-depends:
|
||||||
base ^>=4.18.2.1
|
base ^>=4.18.2.1
|
||||||
, souplesse-lib
|
, souplesse-lib
|
||||||
|
, yesod-core == 1.6.25.1
|
||||||
|
|
||||||
-- Directories containing source files.
|
-- Directories containing source files.
|
||||||
hs-source-dirs: app
|
hs-source-dirs: app
|
||||||
|
Loading…
Reference in New Issue
Block a user