To test this out I just setup a hello.py with a single method
'application()' that is the wsgi app. I tried to move the wsgi_app
into a module, but then I get errors from paster on it wanting a new
.ini file in the module for config.
Does anyone have a sample app layout/paster config they can share?
Everything I can find is full framework TG/Django and the docs make it
seem like I'm missing some standard way to setting up wsgi apps on the
code side so the config works ootb.
Thanks
Rick
That's the command I'm trying to get to work, but the issue I'm having
is the proper PasteDeploy config .ini file with the correct
[app:main]
use=xxxx
param to just call a method as the wsgi application entry point. When
using the wsgi.simple_server you can specify the method, but I don't
see how to get this with the 'paster serve' command.
Rick