我可以将 Velocity 与 Meteor Up 一起使用吗?
Can I use Velocity with Meteor Up?
我最近开始使用 Velocity with Meteor and really like having the HTML reporter as I go. It would be great if the rest of my team could see the testing status on our dev and testing servers, which are deployed on AWS EC2 via Meteor Up。
不幸的是,Velocity 在调试模式下依赖于 Meteor 运行ning(你在本地使用 meteor
或 meteor run
得到的),并在生产部署时关闭(运行 连接您从 meteor build
获得的 Node 应用程序)。 Meteor Up(以及大多数 PaaS 部署解决方案)在部署管道中使用 meteor build
,因此当我通过 mup
部署时 Velocity 不会 运行。我试过设置 NODE_ENV="development"
和 NODE_OPTIONS="--debug"
等环境变量,但这似乎不起作用。
有没有办法让 Meteor Up 在调试模式下部署我的应用程序?
Velocity 目前不支持此功能。您提到的方式是使用 --debug 标志的唯一方式。也许你可以为 MUP 创建一个 PR 来允许这个选项
Arunoda here from Mup
我们正在开发下一版本的 Mup,它可以在部署时启用调试标志。
This version of mup uses Docker and it's much more stable than the current version. (We used it to deploy all our app)
我最近开始使用 Velocity with Meteor and really like having the HTML reporter as I go. It would be great if the rest of my team could see the testing status on our dev and testing servers, which are deployed on AWS EC2 via Meteor Up。
不幸的是,Velocity 在调试模式下依赖于 Meteor 运行ning(你在本地使用 meteor
或 meteor run
得到的),并在生产部署时关闭(运行 连接您从 meteor build
获得的 Node 应用程序)。 Meteor Up(以及大多数 PaaS 部署解决方案)在部署管道中使用 meteor build
,因此当我通过 mup
部署时 Velocity 不会 运行。我试过设置 NODE_ENV="development"
和 NODE_OPTIONS="--debug"
等环境变量,但这似乎不起作用。
有没有办法让 Meteor Up 在调试模式下部署我的应用程序?
Velocity 目前不支持此功能。您提到的方式是使用 --debug 标志的唯一方式。也许你可以为 MUP 创建一个 PR 来允许这个选项
Arunoda here from Mup
我们正在开发下一版本的 Mup,它可以在部署时启用调试标志。
This version of mup uses Docker and it's much more stable than the current version. (We used it to deploy all our app)