Go to file
2011-11-06 20:14:31 -08:00
scripts@2ae5558596 allow hspec 0.9 2011-11-06 20:14:31 -08:00
yesod Added missing robots.txt to cabal 2011-10-30 16:07:48 +02:00
yesod-auth setSaltAndUserHash -> setSaltAndPasswordHash 2011-10-24 07:09:21 -07:00
yesod-core Widgets use Builder for CSS 2011-10-15 21:53:46 +02:00
yesod-default configuration of robots.txt via config/robots.txt 2011-10-15 11:00:02 +02:00
yesod-examples get most examples compiling under 0.9 2011-09-08 22:44:24 -07:00
yesod-form Fix a warning 2011-10-02 17:14:07 +02: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 allow hspec 0.9 2011-11-06 20:14:31 -08: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 typo 2011-09-29 23:19:34 +03: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
    ./scripts/install
  )
done