I'm trying to deploy my web.py app on dotcloud, but can't figure out how to do it.
I went through this tutorial fine: http://docs.dotcloud.com/static/tutorials/firststeps/
And then I looked at http://docs.dotcloud.com/static/components/python/ ...
The python service can host any python web application compatible with the WSGI standard.
That includes all modern Python web frameworks: Django, Pylons, web.py, web2py, etc.
...
python runs with Nginx + uWSGI, managed by supervisord. Static assets are served directly by Nginx, for greater performance.
...
DotCloud relies on well-established tools and conventions to build your app. It should be trivial to adapt any application to run on DotCloud.
...
When deploying your app, DotCloud looks for a file called wsgi.py. Make sure to create that file at the root of your application directory.
Googling "web.py wsgi" leads to http://webpy.org/install which has a pretty bewildering array of instructions. I tried a number of suggestions on the page, but couldn't get anything to work.
The most promising prospect seemed to be creating a file called wsgi.py like so:
import web
urls = (
'/(.*)', 'hello'
)
class hello:
def GET(self, name):
if not name:
name = 'World'
return 'Hello, ' + name + '!'
app = web.application(urls, globals(), autoreload=False)
application = app.wsgifunc()
I also created an empty __init__.py next to it.
Then I did:
dotcloud create jca_hello.py
dotcloud deploy -t python jca_hello.www
dotcloud push jca_hello.www .
But now when I go to http://www.jca_hello.dotcloud.com/ all I see is:
uWSGI Error
wsgi application not found
Any ideas?