目录结构Yesod和Stack

时间:2016-01-13 10:35:44

标签: haskell yesod haskell-stack

我有一个简单的Yesod项目,其常规目录结构如下:

./Main.hs
./Foundation.hs
./Handler/Home.hs
./Handler/... etc
./config/routes
./templates/home.hamlet
./templates/default-layout.hamlet
./templates/default-layout-wrapper.hamlet
./templates/default-layout-wrapper.cassius
...

我正在尝试使用堆栈构建此项目,其中Main.hs程序通常位于app目录下。

我试图将所有Yesod结构放在app目录下(app目录是上面的.)。

该项目的cabal文件如下所示:

executable proj-web01-exe
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base, bytestring, split, filepath
                     , stm, data-default, text, conduit, conduit-extra
                     , containers, resourcet, blaze-html, blaze-markup
                     , shakespeare, yesod, yesod-static
                     , proj-web01
  default-language:    Haskell2010

现在,当我尝试stack build时,收到以下错误消息:

[1 of 6] Compiling Foundation       ( app/Foundation.hs, .stack-work/dist/x86_64-linux/Cabal-1.22.5.0/build/proj-web01-exe/proj-web01-exe-tmp/Foundation.o )

/home/me/proj-web01/app/Foundation.hs:46:35:
    Exception when trying to run compile-time code:
      Called widgetFileNoReload on "default-layout", but no templates were found.
    Code: widgetFileNoReload (def) "default-layout"
    In the splice: $(widgetFileNoReload def "default-layout")

--  While building package proj-web01-0.1.0.0 using:
      /home/me/.stack/setup-exe-cache/x86_64-linux/setup-Simple-Cabal-1.22.5.0-ghc-7.10.3 --builddir=.stack-work/dist/x86_64-linux/Cabal-1.22.5.0 build lib:proj-web01 exe:proj-web01-exe --ghc-options " -ddump-hi -ddump-to-file"
    Process exited with code: ExitFailure 1

widgetFileNoReload不知道在哪里可以找到"默认布局"文件,位于app/templates目录中。

我的问题:我应该以不同方式编写cabal文件,还是应该将模板,Handler ...文件夹放在别处(例如在src中)?使用堆栈时最自然的目录结构是什么?或者如何设置堆栈参数(cabal和yaml文件)以适应通常的Yesod目录结构?

1 个答案:

答案 0 :(得分:1)

如果您使用标准的Yesod脚手架,它应该在没有Stack问题的情况下进行编译(实际上我现在正在这样做,事实上)。我建议不要移动脚手架文件,直到您熟悉设置。如果您确实想要移动源文件,我建议您将模板保留在原始位置。