Go to file
2011-10-19 20:29:38 -07:00
scripts@e791ced039 yepnopeJs 2011-09-23 09:22:06 +03:00
yesod change boilerplate-layout to boilerplate-wrapper 2011-10-19 20:29:38 -07:00
yesod-auth Allows passing through a set of openid extension fields, and returns the full openid response params in credsExtra 2011-10-12 09:21:22 +10: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 yesod-static: fix containers dep 2011-10-14 07:45:01 +02: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