uhbif19
uhbif19

Reputation: 3245

Python analogue to Tomcat and another Servlet-containers

Is there any way to deploy Django (or another WSGI framework) app simply by putting egg package to relevant directory, like Tomcat for WAR packages does?

Upvotes: 2

Views: 429

Answers (1)

Thomas Orozco
Thomas Orozco

Reputation: 55197

You could use Jython (a Java-based Python interpreter) and actually deploy a Django app as a war file with Tomcat!

It's quite outdated though, and gunicorn makes it trivial enough to deploy an app that it's not much different.

Upvotes: 1

Related Questions