yesod/README.md
2011-08-09 15:20:37 -07:00

22 lines
406 B
Markdown

## 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