On Sep 30, 2012, at 12:41 PM, Zak <[email protected]<mailto:[email protected]>> wrote:
I'm trying to run a Pyramid app with Heroku's Foreman (via the these instructions from the Pyramid docs<http://docs.pylonsproject.org/projects/pyramid_cookbook/en/latest/deployment/heroku.html>). I've already used these lines to try creating run: python setup.py develop python runapp.py But it keeps giving me this error when I try to foreman start: zak$ sudo foreman start 12:27:59 web.1 | started with pid 1308 12:27:59 web.1 | /usr/local/foreman/bin/runner: line 36: /Users/MyProject/run: No such file or directory 12:27:59 web.1 | process terminated 12:27:59 system | sending SIGTERM to all processes this is the contents of my procfile: web: ./run I've already created a runapp.py. Why is it not able to located run? try this: web: python runapp.py iirc, it's looking for something on the path (and you have created runapp.py not a script called run) -w -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
