Go to file
2011-08-25 22:40:33 +02:00
aeson@d231dbaeb3 Automated install of some base packages 2011-08-23 15:06:35 +03:00
authenticate@a32a2b284e Automated install of some base packages 2011-08-23 15:06:35 +03:00
blaze-textual@667e2abdd1 update blaze-textual submodule 2011-08-23 06:39:20 -07:00
yesod yesod version bump 2011-08-25 23:15:25 +03:00
yesod-auth SHA bump 2011-08-23 15:08:58 +03:00
yesod-core IsString SomeMessage instance 2011-08-23 16:48:17 +03:00
yesod-examples update for latest persistent 2011-08-01 09:38:54 -07:00
yesod-form Mirror naming changes in shakespeare 2011-08-18 17:59:25 +03:00
yesod-json aeson-native 2011-08-22 17:07:08 +03:00
yesod-newsfeed Mirror naming changes in shakespeare 2011-08-18 17:59:25 +03:00
yesod-persistent Everything building with Hamlet 0.10, scaffolding not fixed yet 2011-08-09 16:48:24 +03:00
yesod-sitemap Mirror naming changes in shakespeare 2011-08-18 17:59:25 +03:00
yesod-static use staticDevel in scaffold 2011-08-22 20:31:22 -07:00
.gitignore Added gitignore 2011-07-22 09:07:56 +03:00
.gitmodules Automated install of some base packages 2011-08-23 15:06:35 +03:00
install-all.sh add submodules to install-all script 2011-08-23 06:35:43 -07:00
README.md properly fix README script this time, my prev commit was still wrong, just in a different way (thanks pbrisbin) 2011-08-25 22:40:33 +02:00

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

  • safety & security: guaranteed at compile time
  • performance: a greater concurrenct load then any other web application server
  • developer productivity: efficiently handles 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

REPOS="hamlet persistent wai yesod"
for repo in $REPOS
do
  git clone http://github.com/yesodweb/$repo
  (cd $repo && ./install-all.sh)
done