Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-03-27 Thread Luposlip
By "dead app" I mean an app with no compilation of cljs. Perhaps only the "LEIN_BUILD_TASK": "package" parameter that is needed! On Fri, Mar 27, 2015 at 8:06 AM Joe Kutner wrote: > The buildpack you show in the readme appears to be the standard buildpack > (unless i'm overlooking something): >

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-03-27 Thread Joe Kutner
The buildpack you show in the readme appears to be the standard buildpack (unless i'm overlooking something): https://github.com/heroku/heroku-buildpack-clojure I was able to pull the Git repo down and deploy successfully without setting BUILDPACK_URL. What do you mean by "dead app"? Did it fail

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-03-26 Thread Henrik Mohr
Thanks Joe! :) It's not the standard Clojure buildpack, that's the reason it has to be specified explicitly. I actually started out having no env parameter in app.json. The result was a completely dead app. After I added the variable it worked. Best, Henrik On Thursday, March 26, 2015 at 5:4

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-03-26 Thread Joe Kutner
That's awesome. I'm really glad to see people using the Heroku button for projects like this. Is there a reason you explicitly set the BUILDPACK_URL? Heroku should detect the `project.clj` and use the Clojure buildpack automatically (I was able to deploy like that when I tested it). If there wa

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-03-25 Thread Henrik Mohr
Rente just got a "Deploy to Heroku" button for easy clone/deployment: https://github.com/enterlab/rente A running demo of Rente can be found here: https://enterlab-rente.herokuapp.com Best, Henrik On Tuesday, March 10, 2015 at 12:11:51 PM UTC+1, Henrik Mohr wrote: > > Rente has been upgraded to

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-03-10 Thread Henrik Mohr
Rente has been upgraded to sente 1.4.0 (breaking change). Best, Henrik On Sunday, January 18, 2015 at 1:28:50 PM UTC+1, Henrik Mohr wrote: > > Hi guys, > > If you want a sample on how to make the newest versions of Reagent, Sente > (for web sockets) work together, want figwheel for ease of deve

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-01-22 Thread Henrik Mohr
I'm not. The Datomic Transactor is on one of our own hosts. On Friday, January 23, 2015 at 12:43:28 AM UTC+1, Wei Hsu wrote: > > How are you running Datomic on Heroku? > > On Thursday, January 22, 2015 at 8:53:29 AM UTC-8, Henrik Mohr wrote: >> >> (still) a moderate load. Around 10-50 users online

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-01-22 Thread Wei Hsu
How are you running Datomic on Heroku? On Thursday, January 22, 2015 at 8:53:29 AM UTC-8, Henrik Mohr wrote: > > (still) a moderate load. Around 10-50 users online at the same time. Not > an extreme load on the Datomic Peer library since not a whole lot of data > is stored per user (well, not fo

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-01-22 Thread Henrik Mohr
(still) a moderate load. Around 10-50 users online at the same time. Not an extreme load on the Datomic Peer library since not a whole lot of data is stored per user (well, not for all users at least). But the server does a lot of real time calculations all the time based on user actions. And y

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-01-22 Thread gvim
On 22/01/2015 07:01, Henrik Mohr wrote: OT: I'm supporting a production app with Clojure/ClojureScript/Datomic/Ring/Sente etc. on a Heroku 2X dyno having 1 GB of RAM. It works like a charm! Best, Henrik What kind of load? Is a basic web app even do-able on a 1X dyno, ie. 512Mb RAM? It's jus

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-01-21 Thread Henrik Mohr
Good to hear that! :) OT: I'm supporting a production app with Clojure/ClojureScript/Datomic/Ring/Sente etc. on a Heroku 2X dyno having 1 GB of RAM. It works like a charm! Best, Henrik On Wednesday, January 21, 2015 at 3:05:10 PM UTC+1, g vim wrote: > > Thanks. Working now. Great work! > > S

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-01-21 Thread gvim
Thanks. Working now. Great work! Slightly OT: for low cost VPS hosting with only 512Mb or 1Gb RAM Node.js is often the only option. A full-stack Clojurescript option built on similar tech as Sente would be fantastic. gvim On 21/01/2015 12:46, Henrik Mohr wrote: Thanks for your comment, pl

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-01-21 Thread Henrik Mohr
On Wednesday, January 21, 2015 at 1:23:36 PM UTC+1, g vim wrote: > > As per the documentation: > I've just revised the documentation, please follow the revised usage documentation. I've changed the order of lein run/figwheel since the server won't serve files correctly (the first time the ser

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-01-21 Thread Henrik Mohr
Thanks for your comment, please pull again and retry: lein figwheel Figwheel: focusing on build-ids (client) Compiling ClojureScript. Figwheel: Starting server at http://localhost:3449 Figwheel: Serving files from '(resources|dev-resources|resources-index/dev)/public' Compiling "resources/public/

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-01-21 Thread gvim
As per the documentation: $ lein run $ lein figwheel Figwheel: focusing on build-ids (client) Compiling ClojureScript. Figwheel: Starting server at http://localhost:3449 Figwheel: Serving files from '(resources|dev-resources|resources-index/dev)/public' Compiling "resources/public/js/app.js" f

[ANN] Reagent + Sente (+ Heroku) = Rente

2015-01-18 Thread Henrik Mohr
Hi guys, If you want a sample on how to make the newest versions of Reagent, Sente (for web sockets) work together, want figwheel for ease of development, and deploy it to Heroku, take a look at my small demo project: https://github.com/enterlab/rente I use it myself as a template/basis for Pro