yesod/README.md
2011-08-23 08:25:04 -07:00

27 lines
708 B
Markdown

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
cabal update
REPOS="hamlet persistent wai yesod"
for repo in $REPOS
do
git clone http://github.com/yesodweb/$repo
cd $repo && (./install-all.sh; cd ..)
done