Reputation: 3245
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
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