Difference between revisions of "Web/Cloud"

From HaskellWiki
< Web
Jump to navigation Jump to search
(→‎OpenShift: out of memory error due to cabal bug)
(2 intermediate revisions by the same user not shown)
Line 3: Line 3:
   
 
[http://en.wikipedia.org/wiki/Platform_as_a_service PaaS] (platform as a service) cloud providers generally limit you to a fixed technology stack. However, [https://www.openshift.com/developers/download-cartridges OpenShift] and [https://devcenter.heroku.com/articles/buildpacks Heroku] allow third-party extensions, which can be used to support Haskell.
 
[http://en.wikipedia.org/wiki/Platform_as_a_service PaaS] (platform as a service) cloud providers generally limit you to a fixed technology stack. However, [https://www.openshift.com/developers/download-cartridges OpenShift] and [https://devcenter.heroku.com/articles/buildpacks Heroku] allow third-party extensions, which can be used to support Haskell.
 
== DigitalOcean ==
 
 
[https://www.digitalocean.com/ DigitalOcean] gives you a clean server that you can SSH to. Supports Docker as well.
 
   
 
== OpenShift ==
 
== OpenShift ==
Line 12: Line 8:
 
{| class="wikitable"
 
{| class="wikitable"
 
! GHC version:
 
! GHC version:
| 7.8.4
+
| 7.10.3
 
|-
 
|-
 
! Author:
 
! Author:
Line 98: Line 94:
 
== See also ==
 
== See also ==
   
* [https://www.fpcomplete.com/ FP Haskell Center]
+
* [https://www.fpcomplete.com/business/fp-haskell-center/ FP Haskell Center]

Revision as of 08:45, 14 December 2015

Haskell Web Development

Software:
Servers - Libraries - Frameworks
Deploy - Cloud
Interfaces to frameworks
Databases and Persistence
Testing and Verification
Content Management

Community & Research:
Forums and Discussion
Literature (research, talks and blogs)
Existing Haskell web applications
Ongoing projects and ideas

PaaS (platform as a service) cloud providers generally limit you to a fixed technology stack. However, OpenShift and Heroku allow third-party extensions, which can be used to support Haskell.

OpenShift

GHC version: 7.10.3
Author: Gideon Sireling
Home page: https://bitbucket.org/accursoft/haskell-cloud/
Documentation: https://bitbucket.org/accursoft/haskell-cloud/src/tip/README.md

The cartridge comes in several flavours, with just the network and text packages or a pre-installed framework:

Framework Cartridge QuickStart Deploy
network manifest quickstart deploy
Yesod manifest quickstart deploy
Snap manifest quickstart deploy
Happstack manifest quickstart deploy
MFlow manifest quickstart deploy
Scotty manifest quickstart deploy

cabal update is likely to exceed the memory limit on small (free) gears due to cabal issue #2396.

Heroku

GHC version: 7.8.2
Author: Joe Nelson
Home page: https://github.com/begriffs/heroku-buildpack-ghc
Documentation: https://github.com/begriffs/heroku-buildpack-ghc/blob/master/README.md

Heroku-Haste

GHC version: 7.4.1
Author: Alberto G. Corona
Home page: https://github.com/agocorona/heroku-buildpack-haste
Documentation: https://github.com/agocorona/heroku-buildpack-haste/blob/master/README.md

Heroku buildpack for tryhplay, incorporating Haste and HPlayground. Demo at http://tryplayg.herokuapp.com/.

See also