oortcloud / heroku-buildpack-meteorite

MIT License
189 stars 97 forks source link

What version of node? #21

Closed ee7klt closed 10 years ago

ee7klt commented 11 years ago

Which version of node installed with this buildpack? I pushed my app to heroku using buildpack https://github.com/nate-strauser/heroku-buildpack-meteorite but the application failed. The logs say that

Meteor requires Node v0.8.24 or later

Any ideas on how to resolve this?

acreeger commented 11 years ago

I don't have a direct answer to your question, but I don't have the same issue. Have you tried with @oortcloud's buildpack: https://github.com/oortcloud/heroku-buildpack-meteorite ?

acreeger commented 11 years ago

Strike that - I see that Meteor 0.6.5 upped the minimum version of Node to 0.8.24. The buildpack installs node 0.8.19 since there is no package.json to specify the node version and 0.8.19 is the buildpack's default.

Have you tried using Meteor 0.6.4.1? Change the contents of <project-dir>/.meteor/release to 0.6.4.1 and remove standard-app-packages from <project-dir>/.meteor/packages.

Check that it runs locally, then try pushing to heroku again.

mdede commented 11 years ago

There is another workaround: define package.json in the root of your meteor project with the following content: { "name": "whatever", "version": "0.0.1", "engines": { "node": "0.8.24" } }

paralin commented 10 years ago

Now irrelevant, put what version you want into "nodeversion" file