Go to file
Maximilian Tagher ba2593c15f Add JSONResponse type
Closes #1481
2018-03-11 21:05:29 -07:00
.github Update PULL_REQUEST_TEMPLATE.md 2017-12-29 20:17:48 -05:00
demo Added an example with email auth and an ses mailer 2015-12-05 20:21:38 -07:00
yesod Merge branch 'better-monads' into no-transformers 2018-01-17 06:43:52 +02:00
yesod-auth Add missing version bump 2018-03-05 11:21:53 +02:00
yesod-auth-oauth Switch to SubHandlerFor 2018-01-24 13:01:26 +02:00
yesod-bin Merge branch 'better-monads' into no-transformers 2018-01-17 06:43:52 +02:00
yesod-core Add JSONResponse type 2018-03-11 21:05:29 -07:00
yesod-eventsource Merge branch 'better-monads' into no-transformers 2018-01-17 06:43:52 +02:00
yesod-form Adapt to Semigroup changes in base-4.11 2018-02-04 20:09:37 -05:00
yesod-newsfeed Version bumps and changelog updates 2018-01-15 15:57:36 +02:00
yesod-persistent Lower bounds and missing extra-deps 2018-02-02 00:15:24 +02:00
yesod-sitemap Merge branch 'better-monads' into no-transformers 2018-01-17 06:43:52 +02:00
yesod-static Merge branch 'better-monads' into no-transformers 2018-01-17 06:43:52 +02:00
yesod-test Merge branch 'master' into bylabel-contain 2018-02-09 22:20:02 -08:00
yesod-websockets Remove duplicate description field 2018-02-20 13:51:36 +02:00
.gitignore Add .DS_Store to .gitignore file 2018-01-24 08:33:46 -08:00
.travis.yml Comment out lts-7 for OS X 2018-02-05 16:14:19 +02:00
appveyor.yml Add curl for AppVeyor 2017-03-23 11:40:27 +02:00
CODE_OF_CONDUCT.md Switch CoC to Contributor Covenant 2017-12-06 16:02:01 +02:00
CONTRIBUTING.md Respond to @psibi's comments 2017-11-08 22:43:51 -08:00
Dockerfile add a Dockerfile for haskell development 2015-05-27 11:43:16 -04:00
LICENSE Switch to copyright year range #617 2017-02-27 09:47:45 +02:00
README Formatted README a bit 2009-07-14 20:52:09 +03:00
README.md Add travis badge to README 2016-09-01 19:54:18 +03:00
ReleaseNotes.md notes were out of date, seem to be maintained on wiki, noted such 2013-01-03 21:09:54 -08:00
sources.txt Version bumps for 1.4 release 2014-09-21 11:41:37 +03:00
stack.yaml More extra-deps for lts-7 2018-02-05 14:21:53 +02:00

Build Status

Yesod Web Framework

An advanced web framework using the Haskell programming language. Featuring:

  • safety & security guaranteed at compile time
  • developer productivity: tools for all your basic web development needs
  • raw performance
    • fast, compiled code
    • techniques for constant-space memory consumption
  • asynchronous IO
    • this is built in to the Haskell programming language (like Erlang)

Learn more about Yesod on its main website. If you want to get started using Yesod, we strongly recommend the quick start guide, based on the Haskell build tool stack.

Hacking on Yesod

Yesod consists mostly of four repositories:

git clone --recursive http://github.com/yesodweb/shakespeare
git clone --recursive http://github.com/yesodweb/persistent
git clone --recursive http://github.com/yesodweb/wai
git clone --recursive http://github.com/yesodweb/yesod

Each repository can be built with stack build.