Go to file
2011-09-23 15:07:00 +03:00
scripts@e791ced039 yepnopeJs 2011-09-23 09:22:06 +03:00
yesod Better scaffolded cabal file 2011-09-23 10:16:54 +03:00
yesod-auth authBrowserId' 2011-09-11 08:53:41 +03:00
yesod-core Added test files to tarballs 2011-09-23 15:07:00 +03:00
yesod-default Merge remote-tracking branch 'origin/master' 2011-09-23 08:40:37 +03:00
yesod-examples get most examples compiling under 0.9 2011-09-08 22:44:24 -07:00
yesod-form added customErrorMessage to Yesod.Form.Functions to allow the user to overwrite the parse-error messages on fields. 2011-09-22 11:54:32 +03:00
yesod-json Version bump 2011-08-29 09:27:05 +03:00
yesod-newsfeed Version bump 2011-08-29 09:27:05 +03:00
yesod-persistent Version bump 2011-08-29 09:27:05 +03:00
yesod-sitemap Version bump 2011-08-29 09:27:05 +03:00
yesod-static Added test files to tarballs 2011-09-23 15:07:00 +03:00
.gitignore Added gitignore 2011-07-22 09:07:56 +03:00
.gitmodules Add scripts submodule 2011-09-11 20:22:35 -04:00
README.md update readme 2011-09-11 20:25:27 -04:00

A next generation web framework using the Haskell programming language, featuring:

  • safety & security guaranteed at compile time
  • performance
    • fast, compiled code
    • a greater concurrent load than any other web application server
  • developer productivity: tools for all your basic web development needs

Learn more: http://yesodweb.com/

Installation: http://www.yesodweb.com/page/five-minutes

Create a new project after installing

yesod init

Installing the latest development version from github

Yesod is built upon many smaller packages, all of which can be installed with:

cabal update

for repo in hamlet persistent wai yesod; do
  git clone http://github.com/yesodweb/$repo
  (
    cd $repo
    git submodule update --init
    ./script/install
  )
done