Re: OT: Github Alternatives

2014-06-30 Thread blake
FWIW, TurnKey has a gitlab appliance that has worked pretty well for me. On Mon, Jun 30, 2014 at 1:26 PM, Jonathan Abbey wrote: > We've been using GitLab in our laboratory for some time now, and I > recommend it very highly indeed. Getting it set up was a bit of a pain > because they did not h

[ANN] clojure.java.jdbc 0.3.4

2014-06-30 Thread Sean Corfield
clojure.java.jdbc - A Clojure wrapper for JDBC access to databases https://github.com/clojure/java.jdbc • Release 0.3.4 on 2014-06-30 • execute! can now accept a PreparedStatement instead of a SQL string JDBC-96. - query already had this functionality • Support s

Re: OT: Github Alternatives

2014-06-30 Thread Jonathan Abbey
We've been using GitLab in our laboratory for some time now, and I recommend it very highly indeed. Getting it set up was a bit of a pain because they did not have RedHat packages when we first installed it, and we were setting it up on a server that did not have Internet access. installation

Re: OT: Github Alternatives

2014-06-30 Thread Rainer Schuster
We are using http://gitblit.com (written in Java)The new release finally supports ssh! Am Montag, 30. Juni 2014 20:14:42 UTC+2 schrieb Andrey Antukh: > > > > 2014-06-30 19:17 GMT+02:00 Phang Mulianto > >: > >> Hi, >> >> Can try Tracscm [ *trac*.edgewall.org/ ] >> >> or gitlab is good, the inte

Re: OT: Github Alternatives

2014-06-30 Thread Andrey Antukh
2014-06-30 19:17 GMT+02:00 Phang Mulianto : > Hi, > > Can try Tracscm [ *trac*.edgewall.org/ ] > > or gitlab is good, the interface is clean, but it runs on java > As far as I know gitlab is written in ruby and not in java. And it has good install scripts that makes all had work of configure i

Re: OT: Github Alternatives

2014-06-30 Thread Phang Mulianto
Hi, Can try Tracscm [ *trac*.edgewall.org/ ] or gitlab is good, the interface is clean, but it runs on java On Mon, Jun 30, 2014 at 11:10 PM, Torsten Uhlmann wrote: > Assembla also offers a private package which you can download and run on > your own machines: > > > http://blog.assembla.c

Re: Routes for both WWW and API

2014-06-30 Thread James Reeves
Yes, though (routes api-routes) is the same as api-routes. You could write your code as: (def api-handler (-> (handler/site api-routes) (wrap-restful-response))) (def www-handler (-> (handler/site www-routes) (wrap-resource "public"))) (def app (wrap-reload (routes api-handler

Re: Best tools for profiling Clojure programs?

2014-06-30 Thread tcrayford
I like YourKit. It's commercial, but really quite good (free for open source if you promote them in your readme). I wrote a bit about the perf wins I got using yourkit on my app here: http://yellerapp.com/posts/2014-05-21-tuning-clojure-an-experience-report.html On Friday, 20 June 2014 14:05:0

Re: OT: Github Alternatives

2014-06-30 Thread François Rey
On 30/06/14 13:10, Torsten Uhlmann wrote: We successfully used http://assembla.com in the past. Except this cannot be hosted internally as requested by the OP... -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cl

Re: OT: Github Alternatives

2014-06-30 Thread Torsten Uhlmann
Assembla also offers a private package which you can download and run on your own machines: http://blog.assembla.com/assemblablog/tabid/12618/bid/10151/Introducing-Private-Assembla-your-own-Assembla-server-in-Download-Cloud-and-Managed-packages.aspx 2014-06-30 17:07 GMT+02:00 Mikhail Kryshen :

Re: OT: Github Alternatives

2014-06-30 Thread Mikhail Kryshen
I would recommend Fossil (http://fossil-scm.org/) — a distributed version control system with integrated distributed bug tracker, wiki and blog, all of which are accessed through a built-in web server. <#secure method=pgpmime mode=sign> Adrian Mowat writes: > Hi All, > > Sorry for the off topic

Riemann tool (uses clojure) help?

2014-06-30 Thread Siddharth Trikha
I am using ELK (logstash, ES, Kibana) stack for log analysis and Riemann for alerting. I have logs in which *users *is one of the fields parsed by logstash and I send the events to riemann from riemann output plugin. Logstash: riemann { riemann_event => { "service" => "logins

Re: OT: Github Alternatives

2014-06-30 Thread Torsten Uhlmann
We successfully used http://assembla.com in the past. 2014-06-30 13:03 GMT+02:00 Di Xu : > gitlab[1]? > > ​[1]​ https://about.gitlab.com/ > > > 2014-06-30 18:34 GMT+08:00 Adrian Mowat : > > Hi All, >> >> Sorry for the off topic thread but my company is looking at alternatives >> to gihub that a

Re: Routes for both WWW and API

2014-06-30 Thread Jonathon McKitrick
Think I got it: (def app (routes (-> (handler/api (routes api-routes )) (wrap-restful-response) (wrap-reload)) (-> (handler/site (routes www-routes (route/not-fou

Re: OT: Github Alternatives

2014-06-30 Thread Adrian Mowat
Lots of great suggestions here! Thanks guys On Mon, Jun 30, 2014 at 2:11 PM, Andrey Antukh wrote: > We are using gitlab and it's works very well! ;) > > Andrey > > > 2014-06-30 15:01 GMT+02:00 François Rey : > >> Tuleap is fully open source and integrates >> gitolite,

Re: OT: Github Alternatives

2014-06-30 Thread Andrey Antukh
We are using gitlab and it's works very well! ;) Andrey 2014-06-30 15:01 GMT+02:00 François Rey : > Tuleap is fully open source and integrates > gitolite, gerrit, hudson/jenkins, etc. along with an agile dashboard, > trackers, and more. > > -- > You received this messa

Re: OT: Github Alternatives

2014-06-30 Thread François Rey
Tuleap is fully open source and integrates gitolite, gerrit, hudson/jenkins, etc. along with an agile dashboard, trackers, and more. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojur

Re: OT: Github Alternatives

2014-06-30 Thread Linus Ericsson
gitolite? I think we used it on one of my jobs. https://github.com/sitaramc/gitolite /Linus On Monday, June 30, 2014, Di Xu wrote: > gitlab[1]? > > ​[1]​ https://about.gitlab.com/ > > > 2014-06-30 18:34 GMT+08:00 Adrian Mowat >: > >> Hi All, >> >> Sorry for the off topic thread but my company

[ANN] Protean 0.8.0 - RESTful API simulation, docs and integration testing

2014-06-30 Thread rossputin
Hi. We've just released Protean 0.8.0 - https://github.com/passivsystems/protean/tree/0.8.0. This little Clojure/edn project helps you: - simulate RESTful API's/services - get generated API docs for API's - do some basic automated integration testing over specified ranges of API surface area

Re: OT: Github Alternatives

2014-06-30 Thread Di Xu
gitlab[1]? ​[1]​ https://about.gitlab.com/ 2014-06-30 18:34 GMT+08:00 Adrian Mowat : > Hi All, > > Sorry for the off topic thread but my company is looking at alternatives > to gihub that are a) hosted internally and b) cheaper (!) > > I was wondering what everyone else is using out there? The

Re: OT: Github Alternatives

2014-06-30 Thread Leonardo Borges
I can't speak for price but I've worked in a couple of clients who used Stash [1], which is Atlassian's internal version of Bitbucket. I had no issues while using that. [1]: https://www.atlassian.com/software/stash [2]: https://bitbucket.org/ Leonardo Borges www.leonardoborges.com On Mon, Jun 3

OT: Github Alternatives

2014-06-30 Thread Adrian Mowat
Hi All, Sorry for the off topic thread but my company is looking at alternatives to gihub that are a) hosted internally and b) cheaper (!) I was wondering what everyone else is using out there? The features we use most on github are easy creation and navigation of repos, commit/diff browsing