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

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

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 adrian.mo...@gmail.com: 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

[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 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 xudi...@gmail.com wrote: gitlab[1]? ​[1]​ https://about.gitlab.com/ 2014-06-30 18:34 GMT+08:00 Adrian Mowat adrian.mo...@gmail.com

Re: OT: Github Alternatives

2014-06-30 Thread François Rey
Tuleap http://www.tuleap.org/ 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

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 fmj...@gmail.com: Tuleap http://www.tuleap.org/ is fully open source and integrates gitolite, gerrit, hudson/jenkins, etc. along with an agile dashboard, trackers, and more. -- You received

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 n...@niwi.be wrote: We are using gitlab and it's works very well! ;) Andrey 2014-06-30 15:01 GMT+02:00 François Rey fmj...@gmail.com: Tuleap http://www.tuleap.org/ is fully open source and

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

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 xudi...@gmail.com: gitlab[1]? ​[1]​ https://about.gitlab.com/ 2014-06-30 18:34 GMT+08:00 Adrian Mowat adrian.mo...@gmail.com: Hi All, Sorry for the off topic thread but my company is looking at

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 adrian.mo...@gmail.com writes: Hi All, Sorry

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 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

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

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: 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 t.uhlm...@agynamix.de wrote: Assembla also offers a private package which you can download and run on your own machines:

Re: OT: Github Alternatives

2014-06-30 Thread Andrey Antukh
2014-06-30 19:17 GMT+02:00 Phang Mulianto braveh...@gmail.com: 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

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 brav...@gmail.com javascript: : Hi, Can try Tracscm [ *trac*.edgewall.org/ ] or gitlab is

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

[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

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 jongoo...@ganymeta.org 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