Meteor CLI + Heroku -- Deploying with a Flag in the CLI -
i'm testing older package , won't run unless boot meteor with:
meteor --allow-incompatible-update
it's intention deploy application heroku. i'm using buildpack accomplish this: https://github.com/jordansissel/heroku-buildpack-meteor
how 1 deploy app heroku while passing in flag/setting on cli?
you need fork buildpack , edit line: https://github.com/jordansissel/heroku-buildpack-meteor/blob/master/bin/compile_meteor#l64
meteor build ../build --allow-incompatible-update --directory 2>&1 | indent
you can use fork buildpack.
Comments
Post a Comment