Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Rietveld inextricably tied to App Engine?

I've been looking at Rietveld as a solution for the lack of code reviews at my company. Can it be set up on a server in-house without using App Engine? It seems to have a bit of App Engine specific code, and I'm not sure it could be set up on a plain old Django/Apache install. I've looked around, but haven't found any information about this.

like image 641
ctoneal Avatar asked Jul 28 '10 19:07

ctoneal


2 Answers

Check out http://django-gae2django.googlecode.com/svn/trunk/examples/rietveld/README

The gae2django project lets GAE apps run against django instead of the GAE development environment.

That means you can run rietveld under django directly, using (by default) an SQLite backend. You can also use mysql or any other DB backend django supports.

That, plus a web server (e.g. Apache) with WSGI integration, makes a local rietveld install run nicely.

like image 191
Daniel S. Sterling Avatar answered Oct 31 '22 11:10

Daniel S. Sterling


What about using one of these projects that provide the same backend services as GAE?

  • Typhoon AE
  • Appscale

There may be more, these are just the ones I know about off the top of my head.

like image 7
cope360 Avatar answered Oct 31 '22 10:10

cope360