Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 781 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 781 Bytes

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

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