diff options
author | Joris Guyonvarch | 2014-04-06 22:55:16 +0200 |
---|---|---|
committer | Joris | 2019-05-01 15:34:22 +0200 |
commit | 0fe906ae7453aa684e998bbcc7a78b62d84f0206 (patch) | |
tree | d3968af830b964193349187fb6fc583780cd0ce3 /PersonalPage.cabal | |
parent | 8b11c4be2b3ac354fa14534662dbd92374617a3e (diff) |
Show resume and projects from a configuration file
Diffstat (limited to 'PersonalPage.cabal')
-rw-r--r-- | PersonalPage.cabal | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/PersonalPage.cabal b/PersonalPage.cabal new file mode 100644 index 0000000..d9386eb --- /dev/null +++ b/PersonalPage.cabal @@ -0,0 +1,76 @@ +Name: PersonalPage +Version: 1.0 +Synopsis: My personal page +Homepage: guyonvarch.me +License: GPL-3 +Author: Joris Guyonvarch +Category: Web +Build-type: Simple +Cabal-version: >= 1.8 + +Executable personalPage + Hs-source-dirs: src + Main-is: Main.hs + Ghc-options: -Wall -Werror + + Build-depends: + base + , text + , aeson + , yaml + , blaze-html + , blaze-markup + , clay + , bytestring + , HaTeX + , process + , mtl + , transformers + , temporary + , scotty + , wai-middleware-static + , time + , config-manager + , lens + , directory + , filepath + + Other-modules: + Conf + , Daemon + , Daemon.Frequency + , Date + , Design.Color + , Design.Global + , Design.Header + , Design.Media + , Design.NotFound + , Design.Projects + , Design.Resume + , Design.Size + , Model + , Model.Company + , Model.Date + , Model.Degree + , Model.Header + , Model.Identity + , Model.Job + , Model.Project + , Model.School + , Model.SkillType + , Model.Translated + , Model.Translation.Key + , Model.Translation.Language + , Model.Translation.Message + , PDF + , Resume + , Utils.String + , View.Git + , View.Header + , View.Icon + , View.Interval + , View.LaTeX.Resume + , View.NotFound + , View.Page + , View.Project + , View.Resume |