-
Notifications
You must be signed in to change notification settings - Fork 97
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
compability with meteor 0.9.0 #52
Comments
I'm getting the same issue. |
Same issue here, also. |
Same issue too |
samsies. |
It may not be a buildpack prb. I tried to bundle a very simple app through meteor standard bundle command. Can't run it too. I'll post a ticket on meteor repository |
My bad, answer is in the meteor doc:
I'll try to update the bundlepack to test that |
I'm definitely getting this as well. |
There is supposably a working buildpack here https://github.com/haynzz/buildpack-meteor-0.9 (I haven't tried it yet). |
I managed to make it work, you can use my fork in the meantime. I'll send a pull request |
@djhi Very cool, please do! |
hi @djhi I am using you fork. But I am still seeing error about fibers thingy...any idea? /tmp/node-meteor-f1Eo/.meteor/packages/meteor-tool/.1.0.26.1owm6lu++os.linux.x86_64+web.browser+web.cordova/meteor-tool-os.linux.x86_64/dev_bundle/lib/node_modules/fibers/future.js:173 |
No, I can't see why it wouldn't install with this code. I suppose you upgraded to 0.9.0 but if you are using meteorite too, did you run |
I am kind of noob in deploying. On heroku, how could i run mrt? I am running my app fine on local. Only when deploy, I have the issue, which I solely depends on the buildpack to help out. edited: I removed all mrt packages, i.e. collectionfs for example. now only have meteor packages. |
did you migrated it on local ? |
Yes I did. It run fine on local so far. |
Can you make a small change in your code and commit it, then post the logs of the buildpack here ? |
The logs are too long. I capture it here: http://i.imgur.com/x5qVwI4.png |
mmm it looks like the installation of some meteorite packages requires fibers too (sass in your case). I tried to install it along with meteorite but if any packages requires other npms modules to install, that will be difficult to maintain. Can you try again ? |
I have just tried. Still having the exact same issue... emm wonder... |
Can you post the logs again ? |
I suppose the log is the same. Here: http://i.imgur.com/3AhGsX4.png |
Ok that's what I thought. The prb isn't in the build pack. The sass package you seems to have a bug on install. Try removing it |
I have the same feeling too. Let me try. Sorry to bother. I will let you know once I remove the package. Thank you so much. |
Success! Thank you @djhi ! Now i have to manually watch the scss compilation... Appreciate your help. 👍 |
Glad you got it working :) |
I'm having an issue with building my 9.0.1 app on Heroku as well. I set the BUILDPACK_URL to https://github.com/oortcloud/heroku-buildpack-meteorite.git and updated the ROOT_URL, MONGO_URL, MONGODB_URL, and MONGOHQ_URL as instructed. The build is successful, but then I get an Application Error when trying to view my site (http://puu.sh/blEL4/47c8f31b26.png). The site works fine when I deploy to Meteor servers, so any thoughts? Edit: After looking at logs, I see fibers is my issue, too. But not sure how to troubleshoot this well since the site deploys fine to meteor.com. |
We need the build log from heroku when you push to their git repo in order 2014-09-04 22:29 GMT+02:00 Amanda Saffer [email protected]:
|
Yeah, sure thing. Sorry if I'm missing something obvious, I'm definitely a baby developer. Here's the build log:
And here's the error log:
|
@amandasaffer for me it began working when I set the BUILDPACK_URL to https://github.com/djhi/heroku-buildpack-meteorite |
@djhi Awesome, your buildpack worked for me. Thanks a lot. I'll be coming back if Meteor breaks again with a new release. :) Also, I did get some npm warnings. Is this a concern?
|
Yeah, interestingly they released a new version less than two hours ago. :) |
@djhi's buildpack URL worked for me also |
anyone success deploy meteor 0.9.0.1 and above? I has try but still not work. UPDATED: I use this command and it work well |
@vunguyentuan - you have to run |
I.e. you can't use the buildpack from oortcloud, instead use the fork by @djhi (as I showed in the previous comment). |
@lirbank I don't think your URL is correct, you have to use the .git reference |
Actually, I'm using it without Everybody, as @kdanninger said, please use: heroku config:set BUILDPACK_URL=https://github.com/djhi/heroku-buildpack-meteorite.git |
This should all be documented. Otherwise, it is so much waste of man-hours trying to find what worked on web. |
I am trying to push my app to heroku after updating it to Meteor 0.9.3.1. Please help. I have been trying to get my app to heroku for a few days now. Here is output on my screen.
|
hey all, you may want to try our buildpack too: |
Why on earth is it installing an old version?
|
Thanks @AndrewMagliozzi! I switched over to this buildpback for Meteor 1.0.0 and added ROOT_URL: [http://myapp.com] to my config and that worked. Good to be off meteorite completely. |
@jononomo I guess there is no activity in this repo anymore as Meteorite is deprecated as of Meteor 1.0, see the README
A good alternative is https://github.com/AdmitHub/meteor-buildpack-horse |
After migration to meteor/meteorite 0.9.0 my app was successfuly deployed to heroku, but after that it crashes during startup with error. On my local machine it works fine with new meteor release. Problem occurs only on Heroku.
2014-08-28T07:47:18.713911+00:00 app[web.1]:
2014-08-28T07:47:18.714803+00:00 app[web.1]: throw err;
2014-08-28T07:47:18.714972+00:00 app[web.1]: ^
2014-08-28T07:47:18.721180+00:00 app[web.1]: Error: Cannot find module 'fibers'
2014-08-28T07:47:18.721184+00:00 app[web.1]: at Function.Module._resolveFilename (module.js:338:15)
2014-08-28T07:47:18.721186+00:00 app[web.1]: at Function.Module._load (module.js:280:25)
2014-08-28T07:47:18.721187+00:00 app[web.1]: at Module.require (module.js:364:17)
2014-08-28T07:47:18.721190+00:00 app[web.1]: at require (module.js:380:17)
2014-08-28T07:47:18.721191+00:00 app[web.1]: at Object. (/app/.meteor/heroku_build/app/programs/server/boot.js:1:75)
2014-08-28T07:47:18.721193+00:00 app[web.1]: at Module._compile (module.js:456:26)
2014-08-28T07:47:18.721194+00:00 app[web.1]: at Object.Module._extensions..js (module.js:474:10)
2014-08-28T07:47:18.721196+00:00 app[web.1]: at Module.load (module.js:356:32)
2014-08-28T07:47:18.721198+00:00 app[web.1]: at Function.Module._load (module.js:312:12)
2014-08-28T07:47:18.721199+00:00 app[web.1]: at Module.require (module.js:364:17)
2014-08-28T07:47:18.714488+00:00 app[web.1]: module.js:340
2014-08-28T07:47:19.702080+00:00 heroku[web.1]: Process exited with status 8
2014-08-28T07:47:17.535884+00:00 heroku[web.1]: Starting process with command
.meteor/heroku_build/bin/node .meteor/heroku_build/app/main.js
2014-08-28T07:47:19.713767+00:00 heroku[web.1]: State changed from crashed to starting
2014-08-28T07:47:19.713185+00:00 heroku[web.1]: State changed from starting to crashed
2014-08-28T07:47:23.344818+00:00 app[web.1]: throw err;
2014-08-28T07:47:23.343796+00:00 app[web.1]:
2014-08-28T07:47:23.347405+00:00 app[web.1]: at Function.Module._resolveFilename (module.js:338:15)
2014-08-28T07:47:23.347408+00:00 app[web.1]: at Module.require (module.js:364:17)
2014-08-28T07:47:23.347414+00:00 app[web.1]: at Module._compile (module.js:456:26)
2014-08-28T07:47:23.347399+00:00 app[web.1]: Error: Cannot find module 'fibers'
2014-08-28T07:47:23.347407+00:00 app[web.1]: at Function.Module._load (module.js:280:25)
2014-08-28T07:47:23.347415+00:00 app[web.1]: at Object.Module._extensions..js (module.js:474:10)
2014-08-28T07:47:23.344824+00:00 app[web.1]: ^
2014-08-28T07:47:23.347412+00:00 app[web.1]: at Object. (/app/.meteor/heroku_build/app/programs/server/boot.js:1:75)
2014-08-28T07:47:23.347410+00:00 app[web.1]: at require (module.js:380:17)
2014-08-28T07:47:23.347417+00:00 app[web.1]: at Module.load (module.js:356:32)
2014-08-28T07:47:23.347418+00:00 app[web.1]: at Function.Module._load (module.js:312:12)
2014-08-28T07:47:23.347420+00:00 app[web.1]: at Module.require (module.js:364:17)
2014-08-28T07:47:23.344388+00:00 app[web.1]: module.js:340
2014-08-28T07:47:24.152741+00:00 heroku[web.1]: State changed from starting to crashed
The text was updated successfully, but these errors were encountered: