Go to file
Luite Stegeman 0793eadcd3 Merge pull request #117 from ornicar/fixReadme
Fix typos in readme
2011-08-27 23:56:54 -07: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 unix-compat bump 2011-08-27 21:44:31 +03:00
yesod-auth SHA bump 2011-08-23 15:08:58 +03:00
yesod-core Fix ambiguous defaultRequest in yesod-core tests 2011-08-28 02:40:40 +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 install-all.sh: small rewrite 2011-08-27 10:24:25 -04:00
README.md Fix typos in readme 2011-08-27 22:45:59 -07:00

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

  • safety & security: guaranteed at compile time
  • performance: a greater concurrent load than 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