我想部署一个流星应用程序,我希望捆绑和部署所有软件包,包括那些标记为debugOnly
的软件包 - 我该如何实现这一目标?我正在使用Arunoda的mup
和mupx
工具进行部署,并将Heroku推送给Heroku。
感谢。
答案 0 :(得分:3)
When you run meteor deploy --debug
, it will deploy your application the same way as it is in development mode. I'd bet running meteor build --debug
would yield the same results.
Of course, this may not be a good idea with with debugOnly packages :)