-
Notifications
You must be signed in to change notification settings - Fork 264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Meteor hangs when building the app #47
Comments
The fix works. Thanks! |
@realyze you saved my day. Thanks |
I get the following loop in the cmd after setting buildpack to realyze fork and git push heroku master 'remote: Adding syncToken: It finished and the app has an error. The app runs locally. |
There is a different buildpack that can be used to build and deploy your meteor apps to Heroku. I am not affiliated with it, but it did fix the deployment issues that I was having. You can find it here: |
heroku buildpacks:set https://github.com/AdmitHub/meteor-buildpack-horse.git
Application still has error. It deploys to meteor. |
This was in the logs: |
+1 |
the horse pack worked for me. MongoURI did not need to be manually set. I didnt rerun with realyze, obviously it probably works too. |
Could someone expand on the fix, I am using Mac OSX Symlink .meteor dir to ${HOME}/meteor. ln -s ? ? |
Just tried the horse pack as well. Doesn't have this issue and builds way |
Failed to load resource
which are in my public/favicons, but Heroku cannot find it? So if it is not an issue but Heroku cannot find it then not sure how to resolve it? |
realyze fork contains some more work than just commit which is fixing Heroku builds. Until realyze commit is merged I've created my own fork and applied only needed fix on it. Works well for me: https://github.com/agarbund/heroku-buildpack-meteor |
@scheung38 |
@agarbund's repo fixed it |
@scheung38 I had the same 503 error, it was caused because I had the "/private" folder in my .gitignore file. After I included only "/private/settings.json" there, everything went well. |
I had similar issues, and I wrote an article on how to solve them. Check it out: https://medium.com/@gautham.gg/deploy-a-meteor-1-3-application-to-heroku-cda1f68ca20a#.on7al5t2v |
Looks like meteor has changed the build process behaviour and now the builds hang.
The problem is that meteor is checking
${HOME}/.meteor
to load package metadata (which is empty).Look at realyze@7f2d560#diff-03bfd081eda3a1e9dc94b17cc19ba246R44 for a possible fix.
The text was updated successfully, but these errors were encountered: