yazz.com
yazz.com

Reputation: 58786

Is there anything like Heroku for deploying Clojure style webapps?

I am looking at deploying a Clojure web app, and I remember using Heroku for rails which was brilliant. Is there anything similar available for Clojure?

Upvotes: 4

Views: 715

Answers (4)

xyz
xyz

Reputation: 27837

As of July 2011, Heroku now officially supports Clojure:

We're very excited to announce official support for Clojure, going into public beta as of today.

http://blog.heroku.com/archives/2011/7/5/clojure_on_heroku/

Upvotes: 5

David Leal
David Leal

Reputation: 440

Currently, the closest there is to Heroku for Clojure is... Heroku: https://gist.github.com/1001206

Courtesy of the new Celadon Cedar stack.

Upvotes: 6

Sean Corfield
Sean Corfield

Reputation: 6666

You might also look at stax.net which offers a full Java container deployment (without the restrictions imposed by Google App Engine). CloudBees just bought Stax so Stax will become CloudBees RUN@Cloud service (according to their recent webinar).

You can read how to deploy Clojure on CloudBees here: https://cloudbees.zendesk.com/entries/452746-clojure-deployment-on-cloudbees

Upvotes: 2

Abhinav Sarkar
Abhinav Sarkar

Reputation: 23802

Google App Engine! GAE supports Java and hence Clojure. I don't have any personal experience of such a project, but this blog seems to have relevent tutorials. Google for it and you'll find some more links like this.

Upvotes: 3

Related Questions