I am trying to configure a common Pyramid project to work with uWSGI through Cherokee, but I am constantly getting a "no application" error. All the research that I have done does not really give me much. Does anyone have any ideas? Please note that I am using virtualenv through virtualenvwrapper.
This is from my development.ini
[uwsgi]
socket = 127.0.0.1:2626
master = true
processes = 1
virtualenv = /home/user/.virtualenvs/pyramid/
pythonpath = /home/user/Projects/ConventionMeStatic
And this is a team that I tried to use it to run: /usr/bin/uwsgi --ini development.ini --plugin python.
I can post any details, but there were no other changes in the project itself.
source
share