-
Notifications
You must be signed in to change notification settings - Fork 14
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
Heroku deploy timeout #108
Comments
Can you let me know what's in your bower.json & your index.html (particularly the scripts & css) section? I mean, not the source, but I just want to see the references to try & reproduce. Truth be told, the optimization pass can take a while depending on the amount of images & files being parsed... On Friday, August 2, 2013 at 1:58 PM, Mauricio Saglietto wrote:
|
to bower.json I only added "angular-resource": "~1.0.7". And to the index.html I added the navbar on the html and as scripts the angular-resource.js, two angular controllers and a service. That helps? |
It helps :) Basically, you're not doing anything crazy. Allllright, let's see what I can figure out :) |
Could it be mongoose that take to much time to be installed from npm? |
@ericclemmons did you ever work out a way around this when it's a problem? We are having the same issue with production-level builds (when it minifies, etc). Is there anyway to lower the build time by doing something before-hand locally? |
We're going to need to
|
Turns out that just having |
Why is that, aren't you already ignoring A colleague suggested getting around the by running Also, I've been coming across more and more opinions that bower components and node modules SHOULD be committed for production apps... to avoid failure in cases where the dependencies are not available or removed. THoughts? |
|
Hello,
I am starting an application on a heroku instance, and im having problems because the bootstrap process timeout by heroku because after a commit its taking more than 60 seconds to bind the port.
Here is the log:
If change the procfile to be without the optimize, like
web: ./node_modules/.bin/grunt build && node server/server
It works fine
Any clues how to make this process faster or the timeout longer?
The text was updated successfully, but these errors were encountered: