Hi there. I'm desperately trying to deploy a simple Pyramid App, which I can locally serve (using Pyramid 1.4b1) running
../bin/pserve production.ini
using this the (temporary) wsgi.py
import os
import sys
path = '/home/arialdomartini/Dropbox/domidoo'
if path not in sys.path:
sys.path.append(path)
from pyramid.paster import get_app
ini_path = '/home/arialdomartini/Dropbox/domidoo/production.ini'
application = get_app(ini_path, 'main')
The application is the scaffold one create by
bin/pcreate -s starter domidoo
that is, a scaffolded HelloWorld app.
I'm receiving this error
2012-12-08 22:57:56,258 :Traceback (most recent call last):
2012-12-08 22:57:56,259 :pkg_resources.DistributionNotFound: waitress
Unfortunately I'm able to find any documentations nor tutorials which can help.
Do you have any hint or link to suggest me? Cheers!