This commit is contained in:
Yann Esposito (Yogsototh) 2021-07-27 00:12:17 +02:00
parent 40dbdfb240
commit 5c1376066a
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646
6 changed files with 26 additions and 207 deletions

4
.dir-locals.el Normal file
View file

@ -0,0 +1,4 @@
((haskell-mode . ((haskell-indent-spaces . 4)
(haskell-process-use-ghci . t)))
(hamlet-mode . ((hamlet/basic-offset . 4)
(haskell-process-use-ghci . t))))

22
.gitignore vendored Normal file
View file

@ -0,0 +1,22 @@
dist*
static/tmp/
static/combined/
config/client_session_key.aes
*.hi
*.o
*.sqlite3
*.sqlite3-shm
*.sqlite3-wal
.hsenv*
cabal-dev/
.stack-work/
.stack-work-devel/
yesod-devel/
.cabal-sandbox
cabal.sandbox.config
.DS_Store
*.swp
*.keter
*~
\#*
inmanis.cabal

View file

@ -1,2 +0,0 @@
çÁ/Wüxº¤4¼Kª¢D»ë9žkYAþm<Œ§:I!jŒ[ uª¹ZÕ^˜*ã«nâ»=—À#ÿ§,
¾<03>T&»¬p d5.+Ó媅<C2AA>ý¬§c+åZÏð³

View file

@ -1,203 +0,0 @@
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 56eebcf49f2fb7d0fc5fe3f4f0c3bdcafefa11166b3b8f0811310482e009a9ab
name: inmanis
version: 0.0.0
build-type: Simple
flag dev
description: Turn on development settings, like auto-reload templates.
manual: False
default: False
flag library-only
description: Build for use with "yesod devel"
manual: False
default: False
library
exposed-modules:
Application
Foundation
Handler.Comment
Handler.Common
Handler.Entry
Handler.Helper
Handler.Home
Handler.Profile
Handler.User
Import
Import.NoFoundation
Lib.Css.Helper
Model
Settings
Settings.StaticFiles
other-modules:
Paths_inmanis
hs-source-dirs:
src
build-depends:
aeson >=1.4 && <1.5
, base >=4.9.1.0 && <5
, bytestring >=0.10 && <0.11
, case-insensitive
, classy-prelude >=1.5 && <1.6
, classy-prelude-conduit >=1.5 && <1.6
, classy-prelude-yesod >=1.5 && <1.6
, conduit >=1.0 && <2.0
, containers
, data-default
, directory >=1.1 && <1.4
, fast-logger >=2.2 && <3.1
, file-embed
, foreign-store
, hjsmin >=0.1 && <0.3
, http-client-tls >=0.3 && <0.4
, http-conduit >=2.3 && <2.4
, monad-control >=0.3 && <1.1
, monad-logger >=0.3 && <0.4
, persistent >=2.9 && <2.11
, persistent-postgresql >=2.9 && <2.11
, persistent-template >=2.5 && <2.9
, safe
, shakespeare >=2.0 && <2.1
, template-haskell
, text >=0.11 && <2.0
, time
, unordered-containers
, vector
, wai
, wai-extra >=3.0 && <3.1
, wai-logger >=2.2 && <2.4
, warp >=3.0 && <3.4
, yaml >=0.11 && <0.12
, yesod >=1.6 && <1.7
, yesod-auth >=1.6 && <1.7
, yesod-core >=1.6 && <1.7
, yesod-form >=1.6 && <1.7
, yesod-markdown >=0.12.6 && <0.13
, yesod-static >=1.6 && <1.7
if (flag(dev)) || (flag(library-only))
ghc-options: -Wall -fwarn-tabs -O0
cpp-options: -DDEVELOPMENT
else
ghc-options: -Wall -fwarn-tabs -O2
default-language: Haskell2010
executable inmanis
main-is: main.hs
other-modules:
DevelMain
Paths_inmanis
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson >=1.4 && <1.5
, base >=4.9.1.0 && <5
, bytestring >=0.10 && <0.11
, case-insensitive
, classy-prelude >=1.5 && <1.6
, classy-prelude-conduit >=1.5 && <1.6
, classy-prelude-yesod >=1.5 && <1.6
, conduit >=1.0 && <2.0
, containers
, data-default
, directory >=1.1 && <1.4
, fast-logger >=2.2 && <3.1
, file-embed
, foreign-store
, hjsmin >=0.1 && <0.3
, http-client-tls >=0.3 && <0.4
, http-conduit >=2.3 && <2.4
, inmanis
, monad-control >=0.3 && <1.1
, monad-logger >=0.3 && <0.4
, persistent >=2.9 && <2.11
, persistent-postgresql >=2.9 && <2.11
, persistent-template >=2.5 && <2.9
, safe
, shakespeare >=2.0 && <2.1
, template-haskell
, text >=0.11 && <2.0
, time
, unordered-containers
, vector
, wai
, wai-extra >=3.0 && <3.1
, wai-logger >=2.2 && <2.4
, warp >=3.0 && <3.4
, yaml >=0.11 && <0.12
, yesod >=1.6 && <1.7
, yesod-auth >=1.6 && <1.7
, yesod-core >=1.6 && <1.7
, yesod-form >=1.6 && <1.7
, yesod-markdown >=0.12.6 && <0.13
, yesod-static >=1.6 && <1.7
if flag(library-only)
buildable: False
default-language: Haskell2010
test-suite inmanis-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Handler.CommentSpec
Handler.CommonSpec
Handler.HomeSpec
Handler.ProfileSpec
TestImport
Paths_inmanis
hs-source-dirs:
test
ghc-options: -Wall
build-depends:
aeson >=1.4 && <1.5
, base >=4.9.1.0 && <5
, bytestring >=0.10 && <0.11
, case-insensitive
, classy-prelude >=1.5 && <1.6
, classy-prelude-conduit >=1.5 && <1.6
, classy-prelude-yesod >=1.5 && <1.6
, conduit >=1.0 && <2.0
, containers
, data-default
, directory >=1.1 && <1.4
, fast-logger >=2.2 && <3.1
, file-embed
, foreign-store
, hjsmin >=0.1 && <0.3
, hspec >=2.0.0
, http-client-tls >=0.3 && <0.4
, http-conduit >=2.3 && <2.4
, inmanis
, monad-control >=0.3 && <1.1
, monad-logger >=0.3 && <0.4
, persistent >=2.9 && <2.11
, persistent-postgresql >=2.9 && <2.11
, persistent-template >=2.5 && <2.9
, safe
, shakespeare >=2.0 && <2.1
, template-haskell
, text >=0.11 && <2.0
, time
, unordered-containers
, vector
, wai
, wai-extra >=3.0 && <3.1
, wai-logger >=2.2 && <2.4
, warp >=3.0 && <3.4
, yaml >=0.11 && <0.12
, yesod >=1.6 && <1.7
, yesod-auth >=1.6 && <1.7
, yesod-core >=1.6 && <1.7
, yesod-form >=1.6 && <1.7
, yesod-markdown >=0.12.6 && <0.13
, yesod-static >=1.6 && <1.7
, yesod-test
default-language: Haskell2010

View file

@ -1 +0,0 @@
2021-07-26 22:01:40.835109 UTC

View file

@ -1 +0,0 @@
2021-07-26 22:00:40.527096 UTC