43 lines
1.1 KiB
Haskell
43 lines
1.1 KiB
Haskell
module Config (config, ropts, wopts, SiteConfig(..), def) where
|
|
|
|
import Data.Default
|
|
import Data.Text (Text)
|
|
import Text.Pandoc.Options as Pandoc
|
|
import Achille (Config(..))
|
|
import Route
|
|
|
|
|
|
config :: Achille.Config
|
|
config = def
|
|
{ deployCmd = Just $ "rsync -avzzr " <> root <> "_site/ --chmod=755 acatalepsie:/var/www/html"
|
|
, contentDir = root <> "content"
|
|
, outputDir = root <> "_site"
|
|
, cacheFile = root <> ".cache"
|
|
, ignore = [ "**/*.agdai"
|
|
, "**/*~"
|
|
]
|
|
} where root = "/home/flupe/dev/site/"
|
|
|
|
|
|
ropts :: Pandoc.ReaderOptions
|
|
ropts = def { readerExtensions = pandocExtensions }
|
|
|
|
wopts :: Pandoc.WriterOptions
|
|
wopts = def { writerHTMLMathMethod = KaTeX "" }
|
|
|
|
|
|
data SiteConfig = SiteConfig
|
|
{ title :: Text
|
|
, description :: Text
|
|
, image :: Text
|
|
, route :: Route
|
|
}
|
|
|
|
instance Default SiteConfig where
|
|
def = SiteConfig
|
|
{ title = "sbbls"
|
|
, description = "my personal web space, for your enjoyment"
|
|
, image = "https://acatalepsie.fr/assets/card.png"
|
|
, route = IndexRoute
|
|
}
|