Deploying a Pyramid Application Using uWSGI and Cherokee

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.

+5
source share
1 answer

You specified virtualenv and pytonpath, but you did not specify which application to download.

, -wsgi-file, deployment.ini, -paste, .

http://projects.unbit.it/uwsgi/wiki/UsePaste

-ini-paste, wwsgi wiki

+4

All Articles