I had to update my Meteor application as accounts-facebook was not wokring on previous version which was Meteor 1.3. After running "meteor update" command the meteor version is now updated to 1.5. Previously I was using mupx to deploy my application on Digital Ocean but it is not working for Meteor 1.5.
Related
Does the version of Node.js on my development machine / integrated development environment (IDE) machine have any effect on my ability to upgrade my Firebase Cloud Functions Node.js runtime to version 8?
I finally got my functions Node.js runtime upgraded to v8 but I had a difficult time doing it. I eventually installed node version manager, nvm, to nail my development machines Node version to 8.0.0 but then ran into the 8.0.0 issue w/ firebase-tools. "must use 8.1.0. 8.0.0 fails"
nvm install v8.1.0
nvm alias default 8.1.0
So, running Node.js v8.1.0 on my development machine seemed to be the breakthrough. I'd like to know but don'e have time to spend on recreating it all.
Currently my Meteor App running #1.2 version right now I want to upgrade this application into Meteor1.5 version.
How to do this?
While you are in your meteor app's root dir,
To upgrade to a specific version:
meteor update --release 1.5
To upgrade to the latest version (1.5.1 at the time of writing this):
meteor update
The available build pack fails for meteor 1.4 https://github.com/ind1go/bluemix-buildpack-meteor.
Is there any working build pack for meteor 1.4 to deploy to bluemix? or please guide with alternative ways.
As of late August 2016, I have had success with deploying Meteor 1.4.1 on Bluemix utilizing this buildpack:
https://github.com/AdmitHub/meteor-buildpack-horse
Some additional details in this PR:
https://github.com/AdmitHub/meteor-buildpack-horse/pull/130
Meteor is changing rapidly, and application packages and project configuration may define your ability to be successful with this buildpack.
Can I Build a meteor android app in cloud 9.
meteor add-platform android
Because Im running on windows or should I install linux and run
curl https://install.meteor.com/ | sh
and build it locally.
If you want to build android app on Windows you need to be using the meteor 1.3 release beta which you can install by running meteor update --release 1.3-cordova-beta.5 in your project folder - Details on this release
Prior to 1.3 you will need to build the app on a linux machine
You can build a Meteor app on Cloud9 using any version of Meteor. See Meteor on Cloud9.
I would like to know if I have to specify the Meteor release version when I run meteor build. Or does meteor build take into consideration the Meteor release that the app is using (specified in .meteor/release?
I have been doing the following for my app:
meteor build --release 1.1.0.2
But I am not sure if this is necessary. Any suggestions?
It is not obligatory, you can just run "meteor build ." which puts the bundled tar.gz into the current directory.