Go to file
patrick brisbin fa3fabcfba Update scaffolding with new load connection functions
Yesod.Settings provides load functions which were previously scaffolded.
They load the ConsStrs for SQL and ConnParams for Mongo.

This prevents the need for a lot of the imports in the scaffolding
settings and simplifies the existing Text import.
2011-09-11 14:57:06 -04:00
yesod Update scaffolding with new load connection functions 2011-09-11 14:57:06 -04:00
yesod-auth authBrowserId' 2011-09-11 08:53:41 +03:00
yesod-core Add mongo connection loader 2011-09-11 13:06:53 -04:00
yesod-examples get most examples compiling under 0.9 2011-09-08 22:44:24 -07:00
yesod-form Merge branch 'master' of github.com:bjornbm/yesod 2011-09-11 12:14:38 +08:00
yesod-json Version bump 2011-08-29 09:27:05 +03:00
yesod-newsfeed Version bump 2011-08-29 09:27:05 +03:00
yesod-persistent Version bump 2011-08-29 09:27:05 +03:00
yesod-sitemap Version bump 2011-08-29 09:27:05 +03:00
yesod-static pass static directory onto wai-app-static 2011-08-28 13:16:04 -07:00
.gitignore Added gitignore 2011-07-22 09:07:56 +03:00
install-all.sh Finish removing submodules 2011-09-11 08:53:41 +03:00
README.md add newline to fix formatting of list 2011-09-02 17:08:28 +03:00

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

  • safety & security guaranteed at compile time
  • performance
    • fast, compiled code
    • a greater concurrent load than any other web application server
  • developer productivity: tools for 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