-
Notifications
You must be signed in to change notification settings - Fork 22
No web process type after doing heroku push #3
Comments
I have the exact same issue, spent an hour trying to get it work with no success. |
Same here |
Same here, was there no solution? |
same issue |
same issue, unable to find anything that makes it work. |
same issue. C:\MyAppDir>heroku ps C:\MyAppDir>heroku ps:scale web=1 C:\MyAppDir>foreman check C:\MyAppDir>more Procfile C:\MyAppDir>heroku config C:\MyAppDir>foreman start C:\MyAppDir>heroku push C:\MyAppDir>heroku logs 2013-06-26T09:34:53.191683+00:00 heroku[api]: Release v10 created by C:\MyAppDir>heroku ps C:\MyAppDir>heroku ps:scale web=1 |
same here |
7 months later, bug is still here... |
I also have this issue but only using Windows/CMD. Terminal on OSx works fine. |
it is due to 0 web process is running... got to resource and set dyno from 0 to 1 by sliding the cursor and hit apply |
in .heroku\plugins\heroku-push\vendor\anvile\lib\anvil\manifest.rb - comment this line 170: I got then also some error, that there was no access to .anvil/buildpack The first change is necessary because otherwise "Windows files" (because of the ":") are skipped - there you shouldn't fear anything at all. And now everyone: Enjoy finally Heroku without git! |
Hello. I apologize for the delayed response. I am currently declaring issue bankruptcy. If this issue still applies to you please feel free to re-open and explain. Thanks :) |
Same happing with me, stuck from last 2 days |
Hello I have the same issue on hosting jekyll however I cant seem to find the solution for this, It appears the errors are coming from my jekyll data 2017-01-24T23:16:29.267268+00:00 heroku[slug-compiler]: Slug compilation started |
Got same issue. |
Same issue here, absolutely no idea why! |
I had the same issue, but it resolved when I manually added node.js as a buildpack on heroku. You can do this by going to heroku dashboard>settings>buildpacks>add buildpack>nodejs |
Hmm... I'm using Python with Flask in my app. I have tried removing and re-adding the python build pack but still no joy. Application Logs: 2018-09-24T07:16:58.316374+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=data-centric-recipe-app.herokuapp.com request_id=03f98cc2-b536-4da4-b6a9-5359fb0a04b0 fwd="1.152.108.234" dyno= connect= service= status=503 bytes= protocol=https 2018-09-24T07:16:59.337861+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico" host=data-centric-recipe-app.herokuapp.com request_id=aa4505a2-f25d-4e46-8629-7c14a6ac73b4 fwd="1.152.108.234" dyno= connect= service= status=503 bytes= protocol=https 2018-09-24T07:16:59.369850+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico" host=data-centric-recipe-app.herokuapp.com request_id=5665ee4c-4e7d-4289-b062-e5aae0c55512 fwd="1.152.108.234" dyno= connect= service= status=503 bytes= protocol=https 2018-09-27T00:20:21.271745+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=data-centric-recipe-app.herokuapp.com request_id=ee1f2f91-062c-4ae1-b06b-d8b72fd35a39 fwd="49.255.209.198" dyno= connect= service= status=503 bytes= protocol=https 2018-09-27T00:20:21.727543+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico" host=data-centric-recipe-app.herokuapp.com request_id=5f41414a-da1f-4ebb-8664-c42eecf056d6 fwd="49.255.209.198" dyno= connect= service= status=503 bytes= protocol=https |
I had success resolving this error by deleting my local git file and doing a new git init. The issue for me was that I initially called my Procfile "procfile" by accident and this was affecting something called a dyno formation on Heroku. The app worked fine locally, but bugged out on Heroku. Changing the name, saving and recommitting had no effect, even after deleting the app on Heroku! Turns out, this issue was that the git file itself refused to change the file name to a version that included a capitol "P" ...in other words, the git file retained the memory of the initial error. Pushing it to Heroku again therefore resulted in the same bug. There may be a different way to do it (perhaps using a branch), but if this is any evidence - I would check the Procfile contents, location, filename, and changes with respect to time and the git file. It may resolve the issue. |
Thanks for this very cool project. Unfortunately, it does not appear to be working for me. I've tried pushing a vanilla Rails project as well as a simple Sinatra project to my Cedar-based Heroku app.
I run
heroku push --app qcp
and everything appears to work normally:However, navigating to my app (
http://qcp.herokuapp.com/
), I get Heroku's Application Error page. Looking through the logs, I see:To corroborate this, when I look at the Heroku dashboard, I see no web dyno resource for my app, and running
heroku ps:scale web=1 --app qcp
gives me:Even if I explicitly create a
Procfile
and define aweb
process with the following, it does not work.web: bundle exec rails server thin -p $PORT -e $RACK_ENV
Everything works just fine if I turn the project into a full-blown git repo and push it normally using git. I feel like I'm missing something simple. Let me know how I can help.
Thanks again,
Chris
The text was updated successfully, but these errors were encountered: