将 metor 应用推送到在线 git 远程

Push metor app to the online git remote

完成后:$ meteor deploy myapp.meteor.com我如何推送新的更改,以便它更新在线版本 (myapp.meteor.com)?

如果像 heroku 一样,我如何通过 git push heroku master 推送到在线远程?

谢谢

只需执行 $ meteor deploy myapp.meteor.com 即可重新部署您的应用。 meteor 中没有 meteor pushgit push heroku master 之类的东西。

If this is the first time deploying to this hostname, Meteor creates a fresh empty database for your application. If you want to deploy an update, Meteor will preserve the existing data and just refresh the code.

更多信息在这里:Reference

只要您收到 git 推送,您就可以使用 Travis CI 或类似于 运行 meteor deploy 的方式连接一些东西。