Mustafa
Mustafa

Reputation: 1776

How to update deployed meteor app

How can i update a deployed app using meteor.

So i deploy my app using

meteor deploy xxxxxxx

and to delete i do

meteor deploy --delete xxxxxx

how can i update? It is not in the command line help also

when i type

meteor deploy --help

I get

Options:
--delete, -D  permanently delete this deployment
--debug       deploy in debug mode (don't minify, etc)
--settings    set optional data for Meteor.settings
--star        a star (tarball) to deploy instead of the current Meteor app

Upvotes: 3

Views: 2540

Answers (2)

HectorTinajero
HectorTinajero

Reputation: 1

Just refresh the web page where you're making the changes and the meteor server will make itself restart! :)

Upvotes: 0

Lance Haig
Lance Haig

Reputation: 332

Is your app hosted on meteor.com?

If so you only need to issue a

Meteor deploy XXXXX

Command again and it will update your app.

Meteor Deploy uses the same hotcode reload that the apps use.

Upvotes: 8

Related Questions