is it possible to run several services from a single app?
i currently have a few services/apps and would like to put them all
into a single app so i can use cx_freeze to create a single exe file
for windows to allow easy testing.
Aljosa
maybe something like this:
-
On Mon, Mar 28, 2011 at 7:44 PM, Allen Short wrote:
> Get rid of 'application1' and 'application2' and just create a single one
> named 'application' , delete the last three lines, and this code will work
> just fine as a .tac file. You only need one call to 'Application' per
is it possible to se
everything is working, thanks.
Aljosa
___
Twisted-Python mailing list
Twisted-Python@twistedmatrix.com
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
now i looking at adding an wsgi app to this setup.
i'm reading
http://twistedmatrix.com/documents/current/web/howto/web-in-60/wsgi.html
but can't figure out howto get factory for wsgi if i have:
===
def application(environ, start_response):
start_response('200 OK', [('Content-type', 'text/pla