【发布时间】:2011-10-02 10:58:55
【问题描述】:
将 Pyramid 项目部署到 dotcloud 的正确方法是什么?
wsgi.py 的内容:
import os, sys
from paste.deploy import loadapp
current_dir = os.path.dirname(__file__)
application = loadapp('config:production.ini', relative_to=current_dir)
我目前收到以下错误。
uWSGI Error
wsgi application not found
【问题讨论】:
标签: python pyramid wsgi dotcloud