Skip to content

Instantly share code, notes, and snippets.

@theworkflow
Last active August 12, 2016 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theworkflow/3c2ffb5319bea4ee027f38d9ae66972a to your computer and use it in GitHub Desktop.
Save theworkflow/3c2ffb5319bea4ee027f38d9ae66972a to your computer and use it in GitHub Desktop.
Deploy Meteor 1.4 on Modulus with Node@v4
npm i -g demeteorizer
npm i -g modulus
cd /to/app/dir
demeteorizer --server-only --node-version 4.4.7 --architecture os.linux.x86_64
npm install --production # only if you have a package.json in the root of your project
mv ./node_modules ./.demeteorized/bundle/programs/server # only if you have a package.json in the root of your project
cd .demeteorized/bundle
modulus deploy --include-modules
@steve-ross
Copy link

pretty sure line 6 should be:

mv ./node_modules ./.demeteorized/bundle/programs/server

@theworkflow
Copy link
Author

Noted and updated! Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment