Creating a redistributable django app
问题 In Java world, a common way to distribute a web app is to package it along with Apache Tomcat. What is the appropriate way to achieve something like that with Django (or any WSGI application for that matter)? 回答1: There are two camps for distributing apps in django. It also depends on what you mean by apps . If you mean an apps is in django terms as in 'pluggable apps' that is separated from the project, then it would be best to use setuptools to package those 'pluggable apps'. Many django