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? -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To view this discussion on the web visit https://groups.google.com/d/msg/pylons-discuss/-/BgyaGSEA8bgJ. 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.
